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 8.47 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (58.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1284.00 ns (0.2%)
patch tree reduce : 1496.00 ns (0.2%)
gen split merge : 766.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.1%)
LB compute : 761.26 us (98.2%)
LB move op cnt : 0
LB apply : 5.04 us (0.7%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0000.vtk [VTK Dump][rank=0]
- took 48.11 ms, bandwidth = 810.63 MB/s
Info: time since start : 11.52700879 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0001.vtk [VTK Dump][rank=0]
- took 39.73 ms, bandwidth = 981.58 MB/s
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.6%)
patch tree reduce : 1495.00 ns (0.4%)
gen split merge : 795.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.2%)
LB compute : 362.38 us (95.1%)
LB move op cnt : 0
LB apply : 2.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.3%)
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.8905e+05 | 262144 | 1 | 4.450e-01 | 0.0% | 0.4% 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 (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 1536.00 ns (0.4%)
gen split merge : 905.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 976.00 ns (0.3%)
LB compute : 357.71 us (94.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1765.00 ns (67.0%)
Info: cfl dt = 0.0016077839676889658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1904e+05 | 262144 | 1 | 3.646e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.877008331896386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001607880030058949, dt = 0.0016077839676889658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1408.00 ns (0.4%)
gen split merge : 1143.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1316.00 ns (0.4%)
LB compute : 315.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.9%)
Info: cfl dt = 0.001607668096192173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3884e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.31321480609036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003215663997747915, dt = 0.001607668096192173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.0%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 809.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 309.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.1%)
Info: cfl dt = 0.001607558666139011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1462e+05 | 262144 | 1 | 3.668e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.777437793573961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004823332093940088, dt = 0.001607558666139011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 746.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 307.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1830.00 ns (69.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 | 7.2731e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.056353914661297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064308907600790985, dt = 0.0016074532609576142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 306.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (68.8%)
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.9367e+05 | 262144 | 1 | 3.779e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.312768850529926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008038344021036713, dt = 0.0016073499018780452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 759.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 987.00 ns (0.3%)
LB compute : 296.51 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1931.00 ns (69.9%)
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.1212e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511684721548567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009645693922914759, dt = 0.0016072545799563419
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.0%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 312.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (69.7%)
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.2377e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768134304315536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011252948502871101, dt = 0.0016071590789263407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.3%)
patch tree reduce : 1940.00 ns (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 273.68 us (93.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1807.00 ns (65.9%)
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.3055e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.916920102715874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012860107581797443, dt = 0.0016070720238733167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1637.00 ns (0.5%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 304.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.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 | 7.3348e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18765242047801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01446717960567076, dt = 0.0016069786216085856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.1%)
patch tree reduce : 1531.00 ns (0.5%)
gen split merge : 757.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 306.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1755.00 ns (66.2%)
Info: cfl dt = 0.00160688048413795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3541e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.229421647560045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016074158227279346, dt = 0.00160688048413795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1139.00 ns (0.4%)
LB compute : 284.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1850.00 ns (68.1%)
Info: cfl dt = 0.0016067926349468886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3091e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12903059682518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017681038711417296, dt = 0.0016067926349468886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 859.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1007.00 ns (0.3%)
LB compute : 330.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.4%)
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.7555e+05 | 262144 | 1 | 3.880e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.906611193875511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019287831346364186, dt = 0.0016067071094612423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 1184.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 290.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1725.00 ns (65.5%)
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.1358e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.538552352577723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020894538455825427, dt = 0.0016066216576594364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 1265.00 ns (0.3%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.2%)
LB compute : 352.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (67.5%)
Info: cfl dt = 0.0016065437952155752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2925e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.089879739256336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022501160113484863, dt = 0.0016065437952155752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 769.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1241.00 ns (0.4%)
LB compute : 278.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.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 | 7.3183e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14607580519733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02410770390870044, dt = 0.0016064727992406017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.2%)
patch tree reduce : 1537.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 307.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1909.00 ns (68.8%)
Info: cfl dt = 0.0016064097560978229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3970e+05 | 262144 | 1 | 4.098e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.112733595217545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02571417670794104, dt = 0.0016064097560978229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 758.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 335.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.5%)
Info: cfl dt = 0.001606353350469151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2673e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03204864959179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027320586464038864, dt = 0.001606353350469151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.1%)
patch tree reduce : 1377.00 ns (0.4%)
gen split merge : 1137.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 986.00 ns (0.3%)
LB compute : 306.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.7%)
Info: cfl dt = 0.0016063054663404595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2906e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082998802817553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028926939814508015, dt = 0.0016063054663404595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1267.00 ns (0.4%)
LB compute : 295.07 us (93.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.6%)
Info: cfl dt = 0.0016062623488034228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0061e+05 | 262144 | 1 | 3.742e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.454940325680148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030533245280848473, dt = 0.0016062623488034228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.3%)
patch tree reduce : 1709.00 ns (0.5%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1110.00 ns (0.4%)
LB compute : 295.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.5269e+05 | 262144 | 1 | 4.016e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.397566373334671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0321395076296519, dt = 0.0016062242891968924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 275.51 us (93.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.8%)
Info: cfl dt = 0.0016061899886699415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7840e+05 | 262144 | 1 | 3.864e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.964201966284428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03374573191884879, dt = 0.0016061899886699415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 302.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.4%)
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.7777e+05 | 262144 | 1 | 3.868e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.949958787148642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03535192190751873, dt = 0.0016061480777358936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 284.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.6%)
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.1883e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.649600694865342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036958069985254624, dt = 0.0016060793948625264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 1204.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1194.00 ns (0.4%)
LB compute : 313.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1968.00 ns (68.9%)
Info: cfl dt = 0.0016060094388298245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3158e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.135832337077904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03856414938011715, dt = 0.0016060094388298245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.2%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1227.00 ns (0.4%)
LB compute : 314.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.4%)
Info: cfl dt = 0.0016059388541102475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3391e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1864968101634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04017015881894698, dt = 0.0016059388541102475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.2%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 273.58 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.0%)
Info: cfl dt = 0.0016058683559207114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2359e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.958156292190907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041776097673057226, dt = 0.0016058683559207114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 308.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (72.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.5019e+05 | 262144 | 1 | 4.032e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.33884532879419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04338196602897794, dt = 0.001605798334094885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1096.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 990.00 ns (0.3%)
LB compute : 269.14 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.0%)
Info: cfl dt = 0.0016057289552316094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2321e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94842725903681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04498776436307282, dt = 0.0016057289552316094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 312.61 us (94.4%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1971.00 ns (67.6%)
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.6664e+05 | 262144 | 1 | 3.932e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.700240635602603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04659349331830443, dt = 0.0016056607261553354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1738.00 ns (0.6%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 289.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.5%)
Info: cfl dt = 0.0016055939830167726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1889e+05 | 262144 | 1 | 3.647e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.851746858763088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04819915404445976, dt = 0.0016055939830167726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 296.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.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 | 7.3354e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.174254728146543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04980474802747654, dt = 0.0016055288446673935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1123.00 ns (0.4%)
gen split merge : 1023.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1271.00 ns (0.4%)
LB compute : 276.94 us (93.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
Info: cfl dt = 0.0016054652241193222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0096e+05 | 262144 | 1 | 3.740e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.455132219405533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05141027687214393, dt = 0.0016054652241193222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 1099.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 888.00 ns (0.3%)
LB compute : 319.87 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.07 us (70.7%)
Info: cfl dt = 0.0016054032126726185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2474e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.978949659112667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05301574209626325, dt = 0.0016054032126726185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.1%)
patch tree reduce : 1149.00 ns (0.3%)
gen split merge : 999.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1258.00 ns (0.4%)
LB compute : 317.34 us (93.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.3%)
Info: cfl dt = 0.0016053431436928492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3284e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15681600059624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05462114530893587, dt = 0.0016053431436928492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 318.17 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.30 us (72.5%)
Info: cfl dt = 0.0016052850430259738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2210e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.919514798054033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056226488452628724, dt = 0.0016052850430259738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.2%)
patch tree reduce : 1279.00 ns (0.4%)
gen split merge : 1150.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1136.00 ns (0.3%)
LB compute : 312.78 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.4%)
Info: cfl dt = 0.001605229212286434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1483e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.75852938375429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0578317734956547, dt = 0.001605229212286434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1195.00 ns (0.4%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 317.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.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 | 7.2087e+05 | 262144 | 1 | 3.636e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.891272698684315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05943700270794113, dt = 0.0016051766898849194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 292.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1830.00 ns (67.3%)
Info: cfl dt = 0.0016051276352367868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2427e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.965627151537824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06104217939782605, dt = 0.0016051276352367868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 767.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 298.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (68.7%)
Info: cfl dt = 0.001605081747758837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3068e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.106331417076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06264730703306284, dt = 0.001605081747758837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 301.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.0%)
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 | 7.2247e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.924941827195816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06425238878082168, dt = 0.0016050390296753507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1270.00 ns (0.4%)
LB compute : 319.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.6%)
Info: cfl dt = 0.0016049996529623194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2867e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.061344044161935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06585742781049703, dt = 0.0016049996529623194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1258.00 ns (0.4%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 320.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (69.0%)
Info: cfl dt = 0.0016049639235464856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2753e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035708624151802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06746242746345935, dt = 0.0016049639235464856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 318.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.4%)
Info: cfl dt = 0.001604932305650867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2661e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.015191492783384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06906739138700584, dt = 0.001604932305650867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1336.00 ns (0.4%)
gen split merge : 753.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 317.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1987.00 ns (71.2%)
Info: cfl dt = 0.0016048904935863433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2529e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.985743005258694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0706723236926567, dt = 0.0016048904935863433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 790.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 303.96 us (94.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.3%)
Info: cfl dt = 0.001604850179693498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1875e+05 | 262144 | 1 | 3.647e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.841189842245381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07227721418624306, dt = 0.001604850179693498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.3%)
patch tree reduce : 1368.00 ns (0.4%)
gen split merge : 1114.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1147.00 ns (0.4%)
LB compute : 287.06 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (66.9%)
Info: cfl dt = 0.0016048157080246687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2758e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035361041275006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07388206436593656, dt = 0.0016048157080246687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1354.00 ns (0.4%)
gen split merge : 1094.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 317.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.0%)
Info: cfl dt = 0.001604787809589588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1527e+05 | 262144 | 1 | 3.665e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.763733525051242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07548688007396122, dt = 0.001604787809589588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 837.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1019.00 ns (0.3%)
LB compute : 341.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.9%)
Info: cfl dt = 0.0016047666462792266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2670e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01540574855972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770916678835508, dt = 0.0016047666462792266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.4%)
patch tree reduce : 1801.00 ns (0.6%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1054.00 ns (0.3%)
LB compute : 293.96 us (93.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.4%)
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 | 7.2656e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.011940088335834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07869643452983004, dt = 0.0016047519934793816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1581.00 ns (0.4%)
gen split merge : 837.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 757.00 ns (0.2%)
LB compute : 335.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.9%)
Info: cfl dt = 0.0016047428039782483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2544e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.987199564702877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08030118652330942, dt = 0.0016047428039782483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1257.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 311.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (65.5%)
Info: cfl dt = 0.0016047384904907657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3429e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.182190852926496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08190592932728767, dt = 0.0016047384904907657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.0%)
patch tree reduce : 1328.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 319.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.1%)
Info: cfl dt = 0.0016047386646706207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3213e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.134449486774443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08351066781777844, dt = 0.0016047386646706207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 302.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (69.1%)
Info: cfl dt = 0.0016047428480074081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1351e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.724221571402872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08511540648244906, dt = 0.0016047428480074081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 310.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (72.9%)
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.4835e+05 | 262144 | 1 | 4.043e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.288165904686295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08672014933045646, dt = 0.001604750552609718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1256.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 279.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.2%)
Info: cfl dt = 0.0016047606140922994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2884e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.061999026301898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08832489988306619, dt = 0.0016047606140922994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1271.00 ns (0.4%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 283.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.9%)
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 | 7.1686e+05 | 262144 | 1 | 3.657e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.798199698971993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08992966049715849, dt = 0.0016047723597612607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 282.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.9%)
Info: cfl dt = 0.0016047851881981024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2376e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.950304234583841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09153443285691976, dt = 0.0016047851881981024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 323.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.7%)
Info: cfl dt = 0.0016047984245914015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2774e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.038271821265386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09313921804511786, dt = 0.0016047984245914015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 277.18 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (68.9%)
Info: cfl dt = 0.0016048077590991498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2588e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.997446313329418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09474401646970927, dt = 0.0016048077590991498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 998.00 ns (0.3%)
LB compute : 300.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.7%)
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 | 7.2347e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.944308356160732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09634882422880842, dt = 0.0016048176104962422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1225.00 ns (0.4%)
LB compute : 299.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.1%)
Info: cfl dt = 0.0016048282125583713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2901e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0664449917885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09795364183930466, dt = 0.0016048282125583713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 298.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1789.00 ns (67.6%)
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 | 7.0453e+05 | 262144 | 1 | 3.721e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.527189474301817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09955847005186304, dt = 0.0016048383443499584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 874.00 ns (0.3%)
LB compute : 295.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.7%)
Info: cfl dt = 0.0016048410695601461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2902e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.066852513614712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.101163308396213, dt = 0.0016048410695601461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1577.00 ns (0.5%)
gen split merge : 1105.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 293.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.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 | 7.3062e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.102258571590188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276814946577315, dt = 0.0016048397348863534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 296.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (72.7%)
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.2973e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.878770819991072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1043729892006595, dt = 0.0016048346020587697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 743.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.32 us (93.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.1%)
Info: cfl dt = 0.0016048255953400694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2564e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.992367138275233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10597782380271827, dt = 0.0016048255953400694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.46 us (5.9%)
patch tree reduce : 1380.00 ns (0.4%)
gen split merge : 1170.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 279.95 us (89.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (68.9%)
Info: cfl dt = 0.0016048128615617787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3387e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.173758116443686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10758264939805834, dt = 0.0016048128615617787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1000.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.3%)
LB compute : 287.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.6%)
Info: cfl dt = 0.0016047965475004561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3372e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17035955497587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10918746225962012, dt = 0.0016047965475004561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.84 us (5.0%)
patch tree reduce : 1234.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1259.00 ns (0.3%)
LB compute : 362.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.9%)
Info: cfl dt = 0.0016047768032500286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3105e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11132635389547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11079225880712057, dt = 0.0016047768032500286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1739.00 ns (0.5%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.3%)
LB compute : 322.98 us (94.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (75.3%)
Info: cfl dt = 0.0016047539720394288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3100e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.109964847785786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1123970356103706, dt = 0.0016047539720394288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1176.00 ns (0.3%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 968.00 ns (0.2%)
LB compute : 389.72 us (94.6%)
LB move op cnt : 0
LB apply : 5.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (70.9%)
Info: cfl dt = 0.0016047281785058118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3288e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151215087875137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11400178958241003, dt = 0.0016047281785058118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1736.00 ns (0.5%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1023.00 ns (0.3%)
LB compute : 319.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (69.4%)
Info: cfl dt = 0.0016046995361914003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1815e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.826370491604562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11560651776091584, dt = 0.0016046995361914003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 996.00 ns (0.3%)
LB compute : 331.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.5%)
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.8774e+05 | 262144 | 1 | 3.812e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.155783787635553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11721121729710723, dt = 0.0016046678872136397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1201.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.4%)
LB compute : 275.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.8%)
Info: cfl dt = 0.001604626128044338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2522e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.981463491637887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11881588518432087, dt = 0.001604626128044338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.2%)
patch tree reduce : 1364.00 ns (0.4%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 949.00 ns (0.3%)
LB compute : 282.64 us (93.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.0%)
Info: cfl dt = 0.001604583222301995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2316e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.935784067031076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12042051131236521, dt = 0.001604583222301995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.4%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1274.00 ns (0.4%)
LB compute : 276.50 us (93.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1957.00 ns (69.5%)
Info: cfl dt = 0.0016045391891071133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2722e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.024766821281794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1220250945346672, dt = 0.0016045391891071133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 295.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.6%)
Info: cfl dt = 0.0016044939391883695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2564e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989468016042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12362963372377431, dt = 0.0016044939391883695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1277.00 ns (0.4%)
LB compute : 283.72 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.4%)
Info: cfl dt = 0.0016044473920102014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2298e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.930313924313097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12523412766296269, dt = 0.0016044473920102014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.5%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 275.58 us (93.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1910.00 ns (68.8%)
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 | 7.1991e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.862220661820789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1268385750549729, dt = 0.0016043995122379676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1538.00 ns (0.5%)
gen split merge : 1077.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 883.00 ns (0.3%)
LB compute : 288.86 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (73.0%)
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 | 7.2943e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0715450094781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12844297456721088, dt = 0.0016043503107421135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1173.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 274.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.4%)
Info: cfl dt = 0.001604299806280021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2331e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.936180413487653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13004732487795298, dt = 0.001604299806280021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.1%)
patch tree reduce : 1158.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 278.72 us (93.6%)
LB move op cnt : 0
LB apply : 2.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1990.00 ns (70.4%)
Info: cfl dt = 0.0016042480911381486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2681e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.012887606865235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.131651624684233, dt = 0.00064004198243367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1301.00 ns (0.4%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1144.00 ns (0.4%)
LB compute : 275.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.6%)
Info: cfl dt = 0.0016042273494663824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3443e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.455350517813221 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 43.253708101 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0002.vtk [VTK Dump][rank=0]
- took 38.70 ms, bandwidth = 1007.83 MB/s
amr::Godunov: t = 0.13229166666666667, dt = 0.0016042273494663824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.8%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 336.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.1%)
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.6835e+05 | 262144 | 1 | 3.922e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.724192231932356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13389589401613305, dt = 0.0016041738397843035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.0%)
patch tree reduce : 1180.00 ns (0.3%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.2%)
LB compute : 328.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Info: cfl dt = 0.001604119875606735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1795e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.816378249082753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13550006785591737, dt = 0.001604119875606735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1195.00 ns (0.4%)
gen split merge : 847.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 322.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.8%)
Info: cfl dt = 0.0016040656532824691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1870e+05 | 262144 | 1 | 3.647e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.832324873057706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1371041877315241, dt = 0.0016040656532824691
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1024.00 ns (0.3%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1251.00 ns (0.4%)
LB compute : 304.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1989.00 ns (69.9%)
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.9343e+05 | 262144 | 1 | 3.780e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.275275246161984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13870825338480658, dt = 0.0016040113863370203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.0%)
patch tree reduce : 1356.00 ns (0.4%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 301.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 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 | 7.2325e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.931565249898716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403122647711436, dt = 0.0016039569826780623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1516.00 ns (0.5%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.2%)
LB compute : 277.12 us (93.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1908.00 ns (68.0%)
Info: cfl dt = 0.0016039028659567307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2739e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.022141119694407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14191622175382168, dt = 0.0016039028659567307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1200.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.2%)
LB compute : 329.24 us (94.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.4%)
Info: cfl dt = 0.001603849476449893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2349e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.935730597876768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14352012461977842, dt = 0.001603849476449893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1168.00 ns (0.3%)
gen split merge : 1128.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 857.00 ns (0.2%)
LB compute : 329.54 us (94.8%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1952.00 ns (69.3%)
Info: cfl dt = 0.0016037972381005763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2309e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.926430603322814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14512397409622832, dt = 0.0016037972381005763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1358.00 ns (0.4%)
gen split merge : 1137.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1087.00 ns (0.3%)
LB compute : 293.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (68.4%)
Info: cfl dt = 0.0016037465435442735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2126e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.885505724018891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1467277713343289, dt = 0.0016037465435442735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1149.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 299.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.8%)
Info: cfl dt = 0.001603697734763891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2843e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.043087557220634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483315178778732, dt = 0.001603697734763891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.2%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 291.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1871.00 ns (66.4%)
Info: cfl dt = 0.0016036510660739464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2953e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06665621054624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1499352156126371, dt = 0.0016036510660739464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.2%)
patch tree reduce : 1207.00 ns (0.4%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1144.00 ns (0.3%)
LB compute : 313.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.5%)
Info: cfl dt = 0.0016036067585051012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2486e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.963495494754264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15153886667871103, dt = 0.0016036067585051012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.2%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1226.00 ns (0.4%)
LB compute : 308.76 us (93.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.3%)
Info: cfl dt = 0.0016035650333493705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3133e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10549690587502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15314247343721613, dt = 0.0016035650333493705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.3%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 299.89 us (93.8%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.6%)
Info: cfl dt = 0.0016035260637780465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2899e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.053639953238417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1547460384705655, dt = 0.0016035260637780465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1465.00 ns (0.5%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 768.00 ns (0.2%)
LB compute : 297.47 us (94.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.2%)
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 | 7.2074e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.87145596988989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15634956453434357, dt = 0.0016034900240051418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1137.00 ns (0.4%)
LB compute : 287.23 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.6%)
Info: cfl dt = 0.0016034570761961648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3174e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.113407131849392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579530545583487, dt = 0.0016034570761961648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 302.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.8%)
Info: cfl dt = 0.0016034272928400282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2624e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.991855449931185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15955651163454487, dt = 0.0016034272928400282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 276.91 us (93.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.2%)
Info: cfl dt = 0.0016034006731800014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2748e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01892226217847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1611599389273849, dt = 0.0016034006731800014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.1%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 1141.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1177.00 ns (0.4%)
LB compute : 313.14 us (94.1%)
LB move op cnt : 0
LB apply : 2.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (67.4%)
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 | 7.2434e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94946424843561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16276333960056488, dt = 0.001603377166597233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1611.00 ns (0.5%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1040.00 ns (0.4%)
LB compute : 273.27 us (93.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (69.4%)
Info: cfl dt = 0.0016033566697151566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1740e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.79640535735066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643667167671621, dt = 0.0016033566697151566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 797.00 ns (0.3%)
LB compute : 289.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.7%)
Info: cfl dt = 0.0016033355791337746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2983e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.868081956169538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16597007343687725, dt = 0.0016033355791337746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1178.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1208.00 ns (0.4%)
LB compute : 302.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: cfl dt = 0.0016033112125957516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2638e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99383174547371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16757340901601103, dt = 0.0016033112125957516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1538.00 ns (0.5%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 318.33 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.5%)
Info: cfl dt = 0.0016032895564966271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2338e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.927425560919486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16917672022860678, dt = 0.0016032895564966271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1261.00 ns (0.4%)
LB compute : 317.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
Info: cfl dt = 0.00160327050798848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2077e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.869804668186669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1707800097851034, dt = 0.00160327050798848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 312.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: cfl dt = 0.001603253932121782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2795e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02779652267807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17238328029309188, dt = 0.001603253932121782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.1%)
patch tree reduce : 1545.00 ns (0.5%)
gen split merge : 936.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 319.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1967.00 ns (68.3%)
Info: cfl dt = 0.001603239659879979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3319e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.941059718995026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17398653422521368, dt = 0.001603239659879979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1472.00 ns (0.5%)
LB compute : 303.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (68.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 | 7.2309e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.920482198256733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17558977388509367, dt = 0.001603227523333457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1377.00 ns (0.5%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1187.00 ns (0.4%)
LB compute : 284.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (70.6%)
Info: cfl dt = 0.0016032173460213816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3416e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16392936037957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17719300140842711, dt = 0.0016032173460213816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1571.00 ns (0.5%)
gen split merge : 1169.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 848.00 ns (0.3%)
LB compute : 301.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1742.00 ns (67.2%)
Info: cfl dt = 0.0016032088203184103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3661e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.217861168096753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17879621875444848, dt = 0.0016032088203184103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1256.00 ns (0.4%)
gen split merge : 1160.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 307.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.3%)
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.2870e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.841911134145152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1803994275747669, dt = 0.0016032016203699061
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.0%)
patch tree reduce : 1184.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 314.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.6%)
Info: cfl dt = 0.0016031954242465896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2763e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.019919295640268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1820026291951368, dt = 0.0016031954242465896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 275.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.0%)
Info: cfl dt = 0.0016031899674078494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3298e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.137699431743684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18360582461938338, dt = 0.0016031899674078494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 273.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.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 | 7.2551e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.973092957567102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18520901458679123, dt = 0.001603185027863387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1184.00 ns (0.4%)
gen split merge : 1075.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1214.00 ns (0.4%)
LB compute : 294.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (67.3%)
Info: cfl dt = 0.001603180411270176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3389e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15770610745867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18681219961465462, dt = 0.001603180411270176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.2%)
patch tree reduce : 1170.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 269.56 us (93.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.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 | 7.2503e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.962567275273623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18841538002592478, dt = 0.0016031759342262609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 309.13 us (94.3%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (86.3%)
Info: cfl dt = 0.0016031714144517824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2530e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.968441809082625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19001855596015105, dt = 0.0016031714144517824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.1%)
patch tree reduce : 1140.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 269.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.8%)
Info: cfl dt = 0.0016031666717149574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2740e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.014612362401188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19162172737460284, dt = 0.0016031666717149574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.8%)
patch tree reduce : 1429.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1060.00 ns (0.3%)
LB compute : 319.63 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.05 us (69.7%)
Info: cfl dt = 0.0016031615358672391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2152e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.885011525245053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1932248940463178, dt = 0.0016031615358672391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.0%)
patch tree reduce : 1505.00 ns (0.4%)
gen split merge : 1169.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1245.00 ns (0.4%)
LB compute : 316.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.3%)
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.9747e+05 | 262144 | 1 | 3.759e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.355474939216283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19482805558218502, dt = 0.001603155854894901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.15 us (2.1%)
patch tree reduce : 1646.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1044.00 ns (0.2%)
LB compute : 410.45 us (93.9%)
LB move op cnt : 0
LB apply : 5.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 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 | 7.1882e+05 | 262144 | 1 | 3.647e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.825557356755882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643121143707992, dt = 0.0016031494968065413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 827.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.2%)
LB compute : 345.01 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.4%)
Info: cfl dt = 0.0016031423463691162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2612e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98626507270151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19803436093388646, dt = 0.0016031423463691162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 272.90 us (93.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: cfl dt = 0.0016031343118768078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2690e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.003233989286173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1996375032802556, dt = 0.0016031343118768078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.1%)
patch tree reduce : 1124.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 301.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.3%)
Info: cfl dt = 0.0016031253494415165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3212e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11805359075977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2012406375921324, dt = 0.0016031253494415165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.3%)
patch tree reduce : 1293.00 ns (0.5%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 266.36 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1849.00 ns (67.5%)
Info: cfl dt = 0.0016031154461330702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3286e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.134427781938065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2028437629415739, dt = 0.0016031154461330702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1475.00 ns (0.5%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 283.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (72.5%)
Info: cfl dt = 0.0016031046165928629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3260e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.128548313174637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20444687838770698, dt = 0.0016031046165928629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1526.00 ns (0.5%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 297.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1999.00 ns (68.2%)
Info: cfl dt = 0.001603092890752776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2264e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90910096260459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20604998300429983, dt = 0.001603092890752776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1515.00 ns (0.5%)
gen split merge : 1314.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 298.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (73.2%)
Info: cfl dt = 0.0016030803039774695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2672e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.998875693371943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076530758950526, dt = 0.0016030803039774695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 1175.00 ns (0.3%)
gen split merge : 1009.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1250.00 ns (0.4%)
LB compute : 316.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.0%)
Info: cfl dt = 0.0016030668947340887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2710e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.006981938356258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20925615619903007, dt = 0.0016030668947340887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 310.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (73.4%)
Info: cfl dt = 0.001603052701015181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3253e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.126508698947013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21085922309376415, dt = 0.001603052701015181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1171.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 298.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Info: cfl dt = 0.0016030377618725046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3068e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.085612951301933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21246227579477933, dt = 0.0016030377618725046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 1093.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 331.42 us (94.1%)
LB move op cnt : 0
LB apply : 4.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (72.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 | 7.2546e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.970449703994534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21406531355665184, dt = 0.0016030221425414918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 294.74 us (93.9%)
LB move op cnt : 0
LB apply : 2.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1958.00 ns (69.2%)
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.9765e+05 | 262144 | 1 | 3.758e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.358220401330268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21566833569919333, dt = 0.0016030058706055072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1180.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 296.45 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (68.3%)
Info: cfl dt = 0.0016029889410030013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1327e+05 | 262144 | 1 | 3.675e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.701907677876662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21727134156979883, dt = 0.0016029889410030013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 313.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.0%)
Info: cfl dt = 0.0016029713555471977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1809e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.807906098250031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21887433051080182, dt = 0.0016029713555471977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.2%)
patch tree reduce : 1544.00 ns (0.5%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 266.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.7%)
Info: cfl dt = 0.0016029531334277559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2977e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.064737941756867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22047730186634903, dt = 0.0016029531334277559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.2%)
patch tree reduce : 1188.00 ns (0.4%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1210.00 ns (0.4%)
LB compute : 263.71 us (93.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (69.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 | 7.3299e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13544263170579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2220802549997768, dt = 0.0016029343135597117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1057.00 ns (0.4%)
LB compute : 267.21 us (93.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (68.8%)
Info: cfl dt = 0.0016029149535093704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2256e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.905685400646359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2236831893133365, dt = 0.0016029149535093704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.2%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 1109.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 949.00 ns (0.3%)
LB compute : 299.89 us (93.8%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (67.1%)
Info: cfl dt = 0.0016028951279274898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2951e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.058478249092122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22528610426684587, dt = 0.0016028951279274898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1214.00 ns (0.4%)
LB compute : 315.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.3%)
Info: cfl dt = 0.0016028749261150829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0335e+05 | 262144 | 1 | 3.727e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.482444388069775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22688899939477336, dt = 0.0016028749261150829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 886.00 ns (0.3%)
LB compute : 295.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.4%)
Info: cfl dt = 0.0016028544498623905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2869e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.039967302393865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22849187432088844, dt = 0.0016028544498623905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1169.00 ns (0.4%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 314.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (72.3%)
Info: cfl dt = 0.0016028338101722966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2777e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01952377129226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23009472877075082, dt = 0.0016028338101722966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.3%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 1060.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1219.00 ns (0.4%)
LB compute : 293.03 us (93.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.4%)
Info: cfl dt = 0.001602813130842037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2241e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.901393698018106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2316975625809231, dt = 0.001602813130842037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.2%)
patch tree reduce : 1662.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 789.00 ns (0.3%)
LB compute : 259.83 us (93.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.0%)
Info: cfl dt = 0.0016027925450056509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0285e+05 | 262144 | 1 | 3.730e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.470540414814417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23330037571176515, dt = 0.0016027925450056509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1673.00 ns (0.6%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1064.00 ns (0.4%)
LB compute : 276.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.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.9388e+05 | 262144 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.27305172889523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2349031682567708, dt = 0.0016027721876416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 1188.00 ns (0.4%)
gen split merge : 1035.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1186.00 ns (0.4%)
LB compute : 309.87 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1946.00 ns (68.9%)
Info: cfl dt = 0.0016027521920402156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2710e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.003898295592087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2365059404444124, dt = 0.0016027521920402156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1706.00 ns (0.5%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1036.00 ns (0.3%)
LB compute : 293.40 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (73.9%)
Info: cfl dt = 0.0016027326822497404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3543e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18724097748138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2381086926364526, dt = 0.0016027326822497404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.4%)
LB compute : 270.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (69.4%)
Info: cfl dt = 0.001602713772512792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3122e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09421801376165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23971142531870235, dt = 0.001602713772512792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 936.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1256.00 ns (0.4%)
LB compute : 267.81 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1939.00 ns (68.6%)
Info: cfl dt = 0.0016026955670155078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0554e+05 | 262144 | 1 | 4.329e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.327826790813509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24131413909121513, dt = 0.0016026955670155078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1190.00 ns (0.4%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 302.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.0%)
Info: cfl dt = 0.001602678216336136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2547e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96743452976823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24291683465823063, dt = 0.001602678216336136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1286.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 284.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.0%)
Info: cfl dt = 0.0016026618150879264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2944e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.054529608246533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24451951287456677, dt = 0.0016026618150879264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1186.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 286.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.3%)
Info: cfl dt = 0.0016026464008763969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5495e+05 | 262144 | 1 | 4.002e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.415042109788248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2461221746896547, dt = 0.0016026464008763969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1237.00 ns (0.4%)
gen split merge : 1070.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.4%)
LB compute : 275.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.0%)
Info: cfl dt = 0.0016026320015174523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3075e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082990314046096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2477248210905311, dt = 0.0016026320015174523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 268.31 us (93.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (70.1%)
Info: cfl dt = 0.001602618642036081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3071e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0819684954314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24932745309204854, dt = 0.001602618642036081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.5%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 1109.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1199.00 ns (0.4%)
LB compute : 270.82 us (93.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.6%)
Info: cfl dt = 0.0016026063479063826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3055e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.078428674120268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2509300717340846, dt = 0.0016026063479063826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 324.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (68.2%)
Info: cfl dt = 0.001602595141448852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2349e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.92290622341074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.252532678081991, dt = 0.001602595141448852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 1060.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 315.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.9%)
Info: cfl dt = 0.0016025850315267217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3324e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.137342875283498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2541352732234398, dt = 0.0016025850315267217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1158.00 ns (0.4%)
gen split merge : 1203.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 311.38 us (94.4%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1739.00 ns (67.5%)
Info: cfl dt = 0.0016025760059287988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2412e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.936574774356117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25573785825496653, dt = 0.0016025760059287988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1320.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1097.00 ns (0.3%)
LB compute : 304.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (72.0%)
Info: cfl dt = 0.0016025680269904812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3247e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12016196667623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573404342608953, dt = 0.0016025680269904812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.85 us (2.3%)
patch tree reduce : 1640.00 ns (0.5%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 319.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (67.6%)
Info: cfl dt = 0.001602560993914686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2626e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.983553749250724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2589430022878858, dt = 0.001602560993914686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 829.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 314.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: cfl dt = 0.0016025547701569295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2844e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03132181004488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2605455632818005, dt = 0.0016025547701569295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.2%)
patch tree reduce : 1835.00 ns (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 277.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1835.00 ns (67.3%)
Info: cfl dt = 0.0016025491912915204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2680e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.995164087626643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2621481180519574, dt = 0.0016025491912915204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 311.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: cfl dt = 0.0016025440674095938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2543e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.965064233486256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26375066724324897, dt = 0.0008326660900843663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1190.00 ns (0.3%)
gen split merge : 840.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 322.34 us (94.3%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.4%)
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.4623e+05 | 262144 | 1 | 4.057e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.389567602844423 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 74.15390159600001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0003.vtk [VTK Dump][rank=0]
- took 39.50 ms, bandwidth = 987.33 MB/s
amr::Godunov: t = 0.26458333333333334, dt = 0.0016025417771585284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1444.00 ns (0.4%)
gen split merge : 1006.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 774.00 ns (0.2%)
LB compute : 309.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1992.00 ns (69.7%)
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 | 7.3303e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13225524517196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26618587511049185, dt = 0.0016025360945466586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1460.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 302.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (69.5%)
Info: cfl dt = 0.001602530514104948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2219e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.893536816551457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2677884112050385, dt = 0.001602530514104948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1157.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 820.00 ns (0.3%)
LB compute : 275.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (74.1%)
Info: cfl dt = 0.0016025249846407937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2729e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.005729244975694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26939094171914346, dt = 0.0016025249846407937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 277.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (68.0%)
Info: cfl dt = 0.0016025193121023827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3198e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10900211455449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27099346670378427, dt = 0.0016025193121023827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1580.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 759.00 ns (0.3%)
LB compute : 274.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.4%)
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.8871e+05 | 262144 | 1 | 3.806e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.156602701473524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27259598601588664, dt = 0.0016025132517936145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 303.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: cfl dt = 0.001602506539923966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3780e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.236806258657023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27419849926768025, dt = 0.001602506539923966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 276.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.0%)
Info: cfl dt = 0.0016024989225039805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3572e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.19106828464467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2758010058076042, dt = 0.0016024989225039805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.0%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 825.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 864.00 ns (0.3%)
LB compute : 320.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1907.00 ns (67.4%)
Info: cfl dt = 0.0016024901786145726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2576e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.971676478805836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27740350473010816, dt = 0.0016024901786145726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 277.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (69.7%)
Info: cfl dt = 0.001602480130460897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2842e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.030226270329823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27900599490872274, dt = 0.001602480130460897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 1271.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1208.00 ns (0.4%)
LB compute : 312.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (70.2%)
Info: cfl dt = 0.0016024686556206256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3203e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.109628432577356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806084750391836, dt = 0.0016024686556206256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.0%)
patch tree reduce : 1675.00 ns (0.5%)
gen split merge : 1131.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 320.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.5%)
Info: cfl dt = 0.0016024556909253584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3318e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13479469783621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28221094369480426, dt = 0.0016024556909253584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 773.00 ns (0.2%)
LB compute : 320.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.3%)
Info: cfl dt = 0.0016024412242367945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2657e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9892244983458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28381339938572964, dt = 0.0016024412242367945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.3%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 1159.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1189.00 ns (0.4%)
LB compute : 286.66 us (93.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1950.00 ns (69.1%)
Info: cfl dt = 0.0016024252800086625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3235e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11621224661847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28541584060996644, dt = 0.0016024252800086625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1571.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 272.67 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1866.00 ns (68.2%)
Info: cfl dt = 0.0016024079031118626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3018e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06826910060881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2870182658899751, dt = 0.0016024079031118626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 272.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1959.00 ns (69.8%)
Info: cfl dt = 0.0016023891438644651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2674e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.992345198425483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2886206737930869, dt = 0.0016023891438644651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1126.00 ns (0.3%)
LB compute : 316.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1814.00 ns (68.8%)
Info: cfl dt = 0.001602369051508574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2635e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.983769424628543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2902230629369514, dt = 0.001602369051508574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 889.00 ns (0.3%)
LB compute : 274.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.2%)
Info: cfl dt = 0.0016023476665227067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2908e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.043589959063826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29182543198845995, dt = 0.0016023476665227067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.3%)
patch tree reduce : 1555.00 ns (0.5%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 740.00 ns (0.2%)
LB compute : 303.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1754.00 ns (67.2%)
Info: cfl dt = 0.0016023250145430188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4036e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29157277805497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2934277796549827, dt = 0.0016023250145430188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1216.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 285.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.9%)
Info: cfl dt = 0.0016023011227223423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3542e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.182545958420473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2950301046695257, dt = 0.0016023011227223423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.2%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 853.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 270.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.0%)
Info: cfl dt = 0.0016022760230872191 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2357e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.921696694646377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29663240579224803, dt = 0.0016022760230872191
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1460.00 ns (0.5%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 729.00 ns (0.2%)
LB compute : 283.11 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1916.00 ns (69.3%)
Info: cfl dt = 0.0016022497563128008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3282e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.124928494476684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29823468181533525, dt = 0.0016022497563128008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 1145.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.4%)
LB compute : 308.71 us (93.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (68.0%)
Info: cfl dt = 0.001602222383191543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3262e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.120188502595216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29983693157164804, dt = 0.001602222383191543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1181.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 272.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1800.00 ns (66.8%)
Info: cfl dt = 0.001602193997241775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2655e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.986323168350454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30143915395483956, dt = 0.001602193997241775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1520.00 ns (0.5%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 715.00 ns (0.2%)
LB compute : 273.01 us (93.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (68.5%)
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 | 7.2135e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.871756867848179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3030413479520813, dt = 0.0016021647133325414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.3%)
patch tree reduce : 1354.00 ns (0.5%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.3%)
LB compute : 269.07 us (93.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1851.00 ns (69.2%)
Info: cfl dt = 0.001602134649340823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2442e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.939017803953089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30464351266541384, dt = 0.001602134649340823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1397.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 297.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.1%)
Info: cfl dt = 0.0016021039177207764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2686e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.992309745257675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3062456473147547, dt = 0.0016021039177207764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.3%)
patch tree reduce : 1882.00 ns (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 268.36 us (93.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1804.00 ns (65.9%)
Info: cfl dt = 0.0016020726252469596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3717e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21886755271452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30784775123247543, dt = 0.0016020726252469596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 302.96 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (72.9%)
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.4551e+05 | 262144 | 1 | 4.061e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.202009674232466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3094498238577224, dt = 0.0016020408737602437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 1200.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 739.00 ns (0.2%)
LB compute : 275.70 us (90.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.5%)
Info: cfl dt = 0.001602008766153024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3247e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.114854452761758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31105186473148266, dt = 0.001602008766153024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1144.00 ns (0.4%)
LB compute : 281.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.8%)
Info: cfl dt = 0.0016019764022026243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4163e+05 | 262144 | 1 | 4.086e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.115967062646895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3126538734976357, dt = 0.0016019764022026243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1560.00 ns (0.5%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.3%)
LB compute : 310.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (72.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 | 7.0025e+05 | 262144 | 1 | 3.744e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.405278899182282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3142558498998383, dt = 0.001601943887973894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1098.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 302.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1864.00 ns (67.8%)
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.8766e+05 | 262144 | 1 | 3.812e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.128126399981143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3158577937878122, dt = 0.001601911178735256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 1248.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1167.00 ns (0.4%)
LB compute : 287.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.9%)
Info: cfl dt = 0.0016018756770598823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2694e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.991787153702598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31745970496654746, dt = 0.0016018756770598823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.5%)
patch tree reduce : 1271.00 ns (0.3%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.2%)
LB compute : 382.02 us (95.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.6%)
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.1362e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.498609782272768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31906158064360735, dt = 0.0016018409803932876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.0%)
patch tree reduce : 1474.00 ns (0.4%)
gen split merge : 1189.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 747.00 ns (0.2%)
LB compute : 326.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1842.00 ns (67.9%)
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.1955e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.628840513377853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32066342162400063, dt = 0.0016018071617333479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.9%)
patch tree reduce : 1541.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1040.00 ns (0.3%)
LB compute : 346.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (73.0%)
Info: cfl dt = 0.0016017742784902361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2155e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.872183413455467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.322265228785734, dt = 0.0016017742784902361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.2%)
patch tree reduce : 1398.00 ns (0.5%)
gen split merge : 1160.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 290.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1997.00 ns (69.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 | 7.2952e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04718133906888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3238670030642242, dt = 0.0016017423768266406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.0%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 329.79 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.66 us (75.6%)
Info: cfl dt = 0.001601711496285393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3103e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08023580469151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32546874544105087, dt = 0.001601711496285393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1499.00 ns (0.5%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.3%)
LB compute : 278.28 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1836.00 ns (67.0%)
Info: cfl dt = 0.001601681681915918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3182e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.097265663180757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3270704569373363, dt = 0.001601681681915918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1690.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 277.88 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.5%)
Info: cfl dt = 0.0016016529714352628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3106e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.080261804781703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3286721386192522, dt = 0.0016016529714352628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1069.00 ns (0.4%)
LB compute : 280.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.0%)
Info: cfl dt = 0.0016016253985030235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2358e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.915509246720665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3302737915906875, dt = 0.0016016253985030235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.5%)
patch tree reduce : 1636.00 ns (0.5%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.4%)
LB compute : 279.93 us (92.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.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 | 7.2873e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.028309277145308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3318754169891905, dt = 0.0016015989941759593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.2%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1371.00 ns (0.5%)
LB compute : 270.57 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.3%)
Info: cfl dt = 0.001601573775884245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3118e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082097862008553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33347701598336643, dt = 0.001601573775884245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1416.00 ns (0.5%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.4%)
LB compute : 290.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.6%)
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 | 7.3067e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07064561947961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3350785897592507, dt = 0.0016015497392883426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.3%)
patch tree reduce : 1424.00 ns (0.5%)
gen split merge : 1139.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 293.31 us (93.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.2%)
Info: cfl dt = 0.0016015268443224833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3613e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.190290603540102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33668013949853903, dt = 0.0016015268443224833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.3%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 267.20 us (93.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.6%)
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.4948e+05 | 262144 | 1 | 4.036e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.284474886220863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3382816663428615, dt = 0.001601503915120408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.1%)
patch tree reduce : 1169.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 270.45 us (93.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1750.00 ns (64.8%)
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.6318e+05 | 262144 | 1 | 3.953e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.585529513911434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3398831702579819, dt = 0.0016014808660209762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.1%)
patch tree reduce : 1434.00 ns (0.4%)
gen split merge : 874.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1029.00 ns (0.3%)
LB compute : 331.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (73.9%)
Info: cfl dt = 0.0016014589133295047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6786e+05 | 262144 | 1 | 3.925e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.688215544878863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3414846511240029, dt = 0.0016014589133295047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 324.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.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 | 7.2141e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.86579381331277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3430861100373324, dt = 0.0016014380930513008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1311.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1150.00 ns (0.4%)
LB compute : 272.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1975.00 ns (70.4%)
Info: cfl dt = 0.001601418415676683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2870e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02585174551364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3446875481303837, dt = 0.001601418415676683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1196.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 275.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (66.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 | 7.2882e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.028404958356006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3462889665460604, dt = 0.0016013998537284632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.3%)
patch tree reduce : 1460.00 ns (0.5%)
gen split merge : 1193.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 270.77 us (93.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1847.00 ns (68.5%)
Info: cfl dt = 0.0016013824120977886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1319e+05 | 262144 | 1 | 3.676e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.684478961972834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3478903663997889, dt = 0.0016013824120977886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.3%)
LB compute : 281.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (72.3%)
Info: cfl dt = 0.0016013660677198886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3203e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09862474478107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34949174881188666, dt = 0.0016013660677198886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 287.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (73.1%)
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.7709e+05 | 262144 | 1 | 3.872e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.890058169897847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35109311487960654, dt = 0.0016013507942590534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1079.00 ns (0.3%)
LB compute : 293.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1817.00 ns (67.4%)
Info: cfl dt = 0.0016013365488530833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3741e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.216450651230296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3526944656738656, dt = 0.0016013365488530833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1457.00 ns (0.5%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 794.00 ns (0.3%)
LB compute : 297.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (69.0%)
Info: cfl dt = 0.0016013232719616754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9690e+05 | 262144 | 1 | 3.762e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.325636979868696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35429580222271867, dt = 0.0016013232719616754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1758.00 ns (0.6%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1146.00 ns (0.4%)
LB compute : 296.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (72.4%)
Info: cfl dt = 0.001601310890567654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3158e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.088018499255707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35589712549468033, dt = 0.001601310890567654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1201.00 ns (0.4%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 270.87 us (93.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (69.0%)
Info: cfl dt = 0.0016012993219697512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4034e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28065138238911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.357498436385248, dt = 0.0016012993219697512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 277.59 us (93.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (69.7%)
Info: cfl dt = 0.001601288478049059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2359e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.912178782191155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3590997357072177, dt = 0.001601288478049059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.5%)
patch tree reduce : 1434.00 ns (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.3%)
LB compute : 270.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.9%)
Info: cfl dt = 0.0016012782690770656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2781e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.004902246578986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3607010241852668, dt = 0.0016012782690770656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1489.00 ns (0.5%)
gen split merge : 1214.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1140.00 ns (0.4%)
LB compute : 302.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (66.5%)
Info: cfl dt = 0.0016012686053856653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2770e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002329657881717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36230230245434386, dt = 0.0016012686053856653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1578.00 ns (0.5%)
gen split merge : 815.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 786.00 ns (0.2%)
LB compute : 311.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1791.00 ns (67.9%)
Info: cfl dt = 0.0016012593988566166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2626e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.97043675141635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36390357105972954, dt = 0.0016012593988566166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1664.00 ns (0.5%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.2%)
LB compute : 306.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.8%)
Info: cfl dt = 0.0016012505632472084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2643e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.974243335775922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36550483045858617, dt = 0.0016012505632472084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1417.00 ns (0.5%)
gen split merge : 1273.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 277.75 us (93.1%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.3%)
Info: cfl dt = 0.0016012420141178355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2708e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.988314380163224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3671060810218334, dt = 0.0016012420141178355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1509.00 ns (0.5%)
gen split merge : 1135.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 309.66 us (94.1%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1778.00 ns (67.4%)
Info: cfl dt = 0.0016012336688118719 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3089e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072081896768083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3687073230359512, dt = 0.0016012336688118719
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 1160.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 278.18 us (93.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (73.5%)
Info: cfl dt = 0.0016012254464421265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2780e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00393155663127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3703085567047631, dt = 0.0016012254464421265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1584.00 ns (0.5%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1150.00 ns (0.4%)
LB compute : 289.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.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 | 7.2640e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.973185029977024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37190978215120524, dt = 0.0016012172688763468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 266.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (69.6%)
Info: cfl dt = 0.001601209062158391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2953e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04179988793149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3735109994200816, dt = 0.001601209062158391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1541.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1009.00 ns (0.3%)
LB compute : 325.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1972.00 ns (68.6%)
Info: cfl dt = 0.0016012007580546194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1536e+05 | 262144 | 1 | 3.664e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.730268357162304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37511220848224, dt = 0.0016012007580546194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1357.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 308.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (69.3%)
Info: cfl dt = 0.0016011922960076812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2743e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99557825552697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3767134092402946, dt = 0.0016011922960076812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1596.00 ns (0.5%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 275.89 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (73.0%)
Info: cfl dt = 0.0016011836239350305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4978e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.486930997445253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3783146015363023, dt = 0.0016011836239350305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1408.00 ns (0.5%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 272.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.3%)
Info: cfl dt = 0.001601174697989259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2557e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95443682901691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37991578516023733, dt = 0.001601174697989259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 281.79 us (90.5%)
LB move op cnt : 0
LB apply : 14.90 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (72.2%)
Info: cfl dt = 0.0016011654823490308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2284e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.894315450557992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3815169598582266, dt = 0.0016011654823490308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 804.00 ns (0.2%)
LB compute : 308.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.3%)
Info: cfl dt = 0.001601155949595148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2676e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.980537077788627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3831181253405756, dt = 0.001601155949595148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1197.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 286.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.4%)
Info: cfl dt = 0.0016011460818979996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3145e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.083474428690838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38471928129017074, dt = 0.0016011460818979996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1610.00 ns (0.5%)
gen split merge : 1203.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.3%)
LB compute : 300.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1919.00 ns (69.1%)
Info: cfl dt = 0.0016011358727820578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2608e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.965430664090261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38632042737206873, dt = 0.0016011358727820578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 1144.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 315.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.0%)
Info: cfl dt = 0.0016011253287173991 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3960e+05 | 262144 | 1 | 4.099e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.063686448468177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3879215632448508, dt = 0.0016011253287173991
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.9%)
patch tree reduce : 1161.00 ns (0.3%)
gen split merge : 898.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.2%)
LB compute : 357.18 us (94.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.8%)
Info: cfl dt = 0.001601114470122607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3034e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.058852260569395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3895226885735682, dt = 0.001601114470122607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 296.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1882.00 ns (67.0%)
Info: cfl dt = 0.0016011033342757898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0538e+05 | 262144 | 1 | 3.716e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.50984868466059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3911238030436908, dt = 0.0016011033342757898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1175.00 ns (0.3%)
gen split merge : 858.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 327.24 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.2%)
Info: cfl dt = 0.001601091978273763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2035e+05 | 262144 | 1 | 3.639e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.838907926595633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3927249063779666, dt = 0.001601091978273763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.8%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 1171.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1270.00 ns (0.3%)
LB compute : 357.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (73.4%)
Info: cfl dt = 0.0016010804775843327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3020e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.055455386054184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3943259983562403, dt = 0.0016010804775843327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.4%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 279.76 us (93.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.6%)
Info: cfl dt = 0.001601068923909221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2622e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.967764066994842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39592707883382466, dt = 0.000947921166175314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1558.00 ns (0.5%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1135.00 ns (0.4%)
LB compute : 283.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.6%)
Info: cfl dt = 0.001601066636316225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2239e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.403819672138328 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 105.026217117 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0004.vtk [VTK Dump][rank=0]
- took 39.42 ms, bandwidth = 989.43 MB/s
amr::Godunov: t = 0.396875, dt = 0.001601066636316225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1515.00 ns (0.5%)
gen split merge : 1178.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1215.00 ns (0.4%)
LB compute : 307.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.8%)
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 | 6.5135e+05 | 262144 | 1 | 4.025e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.32148254484779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3984760666363162, dt = 0.001601053119239654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.2%)
patch tree reduce : 1699.00 ns (0.5%)
gen split merge : 1116.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 768.00 ns (0.2%)
LB compute : 296.27 us (93.8%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1811.00 ns (68.3%)
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.3922e+05 | 262144 | 1 | 4.101e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.054509064916727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4000771197555558, dt = 0.0016010400506214263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.4%)
LB compute : 286.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.1%)
Info: cfl dt = 0.0016010278856867068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2679e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.979815804589936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40167815980617727, dt = 0.0016010278856867068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1227.00 ns (0.4%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 324.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.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 | 7.2542e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.949689574852357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.403279187691864, dt = 0.0016010168310408612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1324.00 ns (0.4%)
LB compute : 303.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.2%)
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 | 6.5099e+05 | 262144 | 1 | 4.027e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.313116123857535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40488020452290485, dt = 0.0016010069945716677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.2%)
LB compute : 329.95 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.9%)
Info: cfl dt = 0.001600998362382819 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2632e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.969322887592078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4064812115174765, dt = 0.001600998362382819
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.1%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 312.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.1%)
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.9843e+05 | 262144 | 1 | 3.753e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.356043688095948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4080822098798593, dt = 0.0016009908408472467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1148.00 ns (0.3%)
LB compute : 338.89 us (94.8%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (73.2%)
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.4642e+05 | 262144 | 1 | 4.055e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.212457733965428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4096832007207066, dt = 0.0016009843107603306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.9%)
patch tree reduce : 1495.00 ns (0.4%)
gen split merge : 1168.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 768.00 ns (0.2%)
LB compute : 325.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.5%)
Info: cfl dt = 0.0016009786607424394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2603e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9625726976689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4112841850314669, dt = 0.0016009786607424394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 300.97 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (68.0%)
Info: cfl dt = 0.0016009738370463252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2942e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.037207023994018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41288516369220934, dt = 0.0016009738370463252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.1%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 325.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.4%)
Info: cfl dt = 0.0016009698496969886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3109e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07366570537431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41448613752925567, dt = 0.0016009698496969886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 310.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.4%)
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.4030e+05 | 262144 | 1 | 4.094e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.07765765023089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41608710737895266, dt = 0.0016009667843901254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 1196.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 770.00 ns (0.2%)
LB compute : 312.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1990.00 ns (70.8%)
Info: cfl dt = 0.0016009647829416814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1497e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.719288184150866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4176880741633428, dt = 0.0016009647829416814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 265.32 us (93.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.1%)
Info: cfl dt = 0.0016009640131778382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3350e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.126691097749685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4192890389462845, dt = 0.0016009640131778382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 278.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.4%)
Info: cfl dt = 0.0016009646388346775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3102e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072215606731543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42089000295946233, dt = 0.0016009646388346775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 308.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.6%)
Info: cfl dt = 0.001600966796700895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0225e+05 | 262144 | 1 | 3.733e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.43965854113831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.422490967598297, dt = 0.001600966796700895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.2%)
LB compute : 313.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1987.00 ns (69.8%)
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.9832e+05 | 262144 | 1 | 3.754e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.353191390344417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4240919343949979, dt = 0.0016009705820689722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 1369.00 ns (0.5%)
gen split merge : 1010.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 969.00 ns (0.3%)
LB compute : 269.14 us (93.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.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.8486e+05 | 262144 | 1 | 3.828e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.057291165198311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4256929049770669, dt = 0.0016009756214165484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1401.00 ns (0.5%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 283.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.1%)
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 | 6.7710e+05 | 262144 | 1 | 3.872e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.886686320596999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42729388059848344, dt = 0.0016009818461191286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (2.7%)
patch tree reduce : 1635.00 ns (0.5%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 277.71 us (93.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.2%)
Info: cfl dt = 0.001600989307593151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2939e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.036468845124542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42889486244460256, dt = 0.001600989307593151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1169.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 294.08 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.3%)
Info: cfl dt = 0.0016009980318315142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2297e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.895499918604775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43049585175219574, dt = 0.0016009980318315142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 1117.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 284.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.9%)
Info: cfl dt = 0.0016010080150659555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2783e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002406290515584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43209684978402724, dt = 0.0016010080150659555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1167.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 272.32 us (93.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1980.00 ns (70.4%)
Info: cfl dt = 0.0016010192282721158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3311e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11845608246214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4336978577990932, dt = 0.0016010192282721158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 298.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (69.3%)
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 | 7.2782e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002288441304387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4352988770273653, dt = 0.0016010316831425713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1437.00 ns (0.5%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 273.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.3%)
Info: cfl dt = 0.0016010453133179924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2882e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.024373857294826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4368999087105079, dt = 0.0016010453133179924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 923.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1239.00 ns (0.4%)
LB compute : 276.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.3%)
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.9691e+05 | 262144 | 1 | 3.762e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.323033828531289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4385009540238259, dt = 0.0016010600157422596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1127.00 ns (0.4%)
LB compute : 272.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.6%)
Info: cfl dt = 0.0016010756536162809 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3193e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.093053228559597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44010201403956817, dt = 0.0016010756536162809
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (2.0%)
patch tree reduce : 1705.00 ns (0.6%)
gen split merge : 1114.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1325.00 ns (0.5%)
LB compute : 271.67 us (93.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.0%)
Info: cfl dt = 0.0016010920740172551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2304e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.897776909015791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44170308969318445, dt = 0.0016010920740172551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 284.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: cfl dt = 0.0016011091089298101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2872e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.022793229385695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4433041817672017, dt = 0.0016011091089298101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 764.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 857.00 ns (0.3%)
LB compute : 307.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.6%)
Info: cfl dt = 0.0016011265875542074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4154e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.304915310263947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4449052908761315, dt = 0.0016011265875542074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1093.00 ns (0.3%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 304.77 us (94.5%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1982.00 ns (69.1%)
Info: cfl dt = 0.0016011443395750609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2817e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.011129158289204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4465064174636857, dt = 0.0016011443395750609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 764.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 279.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.0%)
Info: cfl dt = 0.0016011621988228802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2466e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.934007042757429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4481075618032607, dt = 0.0016011621988228802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 291.90 us (93.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.6%)
Info: cfl dt = 0.001601180002967935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3378e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.134870888656955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4497087240020836, dt = 0.001601180002967935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.5%)
patch tree reduce : 1378.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 278.46 us (93.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.5%)
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.9107e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.19589314408376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45130990400505155, dt = 0.001601197580064649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 1070.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1175.00 ns (0.4%)
LB compute : 312.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.7%)
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.2473e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737222587244021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529111015851162, dt = 0.0016012147624888755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.1%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.2%)
LB compute : 316.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.9%)
Info: cfl dt = 0.0016012313950799864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2260e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.889439924403225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4545123163476051, dt = 0.0016012313950799864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.3%)
LB compute : 293.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (71.4%)
Info: cfl dt = 0.001601247334023342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2635e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972229821004545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4561135477426851, dt = 0.001601247334023342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1677.00 ns (0.5%)
gen split merge : 1114.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 755.00 ns (0.2%)
LB compute : 300.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1915.00 ns (69.5%)
Info: cfl dt = 0.001601262460163295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2762e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00018830676155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4577147950767084, dt = 0.001601262460163295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1578.00 ns (0.5%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.3%)
LB compute : 275.84 us (93.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: cfl dt = 0.001601276681276416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2749e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99756955555038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4593160575368717, dt = 0.001601276681276416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1196.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 299.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1975.00 ns (68.8%)
Info: cfl dt = 0.0016012899295218634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2747e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.997150483335384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609173342181481, dt = 0.0016012899295218634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.2%)
LB compute : 306.56 us (90.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.2%)
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.8424e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.046735022736652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46251862414767, dt = 0.001601302158035694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1500.00 ns (0.5%)
gen split merge : 1101.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 777.00 ns (0.2%)
LB compute : 295.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.5%)
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.2525e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.749608076612573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46411992630570564, dt = 0.001601313337896027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1328.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 356.29 us (95.1%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (68.5%)
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.7793e+05 | 262144 | 1 | 3.867e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.908104889596968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4657212396436017, dt = 0.0016013234541979702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 1396.00 ns (0.4%)
gen split merge : 1175.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1317.00 ns (0.4%)
LB compute : 332.77 us (94.5%)
LB move op cnt : 0
LB apply : 2.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.2%)
Info: cfl dt = 0.0016013324996771042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3293e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.117660776608787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4673225630977996, dt = 0.0016013324996771042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.2%)
LB compute : 337.16 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.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 | 7.3224e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.102603871108922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4689238955974767, dt = 0.0016013404702926578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1555.00 ns (0.5%)
gen split merge : 1157.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1210.00 ns (0.4%)
LB compute : 307.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (69.7%)
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 | 7.3166e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08989288039555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47052523606776936, dt = 0.0016013473652438104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1407.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 799.00 ns (0.2%)
LB compute : 304.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.5%)
Info: cfl dt = 0.0016013532274397248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2961e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.045021954007645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47212658343301317, dt = 0.0016013532274397248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1516.00 ns (0.5%)
gen split merge : 1017.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 305.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.7%)
Info: cfl dt = 0.001601358068570277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2498e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.943113137978111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4737279366604529, dt = 0.001601358068570277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 275.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (69.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 | 7.2416e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.925130432168258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47532929472902313, dt = 0.001601361893906238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1359.00 ns (0.5%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 273.04 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.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 | 7.2922e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.036509408045564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4769306566229294, dt = 0.0016013646768350362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1306.00 ns (0.4%)
LB compute : 281.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (67.8%)
Info: cfl dt = 0.0016013663579055762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2751e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.998970423923069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785320212997644, dt = 0.0016013663579055762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1859.00 ns (0.6%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 278.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1791.00 ns (66.9%)
Info: cfl dt = 0.0016013668921812671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2390e+05 | 262144 | 1 | 3.621e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.919499386418442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48013338765767, dt = 0.0016013668921812671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 305.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.00 ns (66.2%)
Info: cfl dt = 0.0016013662201985535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3096e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.074845452326425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48173475454985126, dt = 0.0016013662201985535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.3%)
patch tree reduce : 1311.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 999.00 ns (0.3%)
LB compute : 300.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.2%)
Info: cfl dt = 0.001601363871153486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0562e+05 | 262144 | 1 | 3.715e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.517652467056728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48333612077004984, dt = 0.001601363871153486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 273.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1719.00 ns (67.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 | 7.3032e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.060788009989384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48493748464120334, dt = 0.0016013599065358285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 302.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.3%)
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.8276e+05 | 262144 | 1 | 3.840e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.014700409214072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48653884454773916, dt = 0.0016013544497046014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1388.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 317.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.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 | 6.7529e+05 | 262144 | 1 | 3.882e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.850394638434649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48814019899744376, dt = 0.001601347644021806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.3%)
patch tree reduce : 1732.00 ns (0.5%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 300.96 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.7%)
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 | 7.3105e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.076571714655127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4897415466414656, dt = 0.0016013396296300835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.3%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 306.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (74.0%)
Info: cfl dt = 0.001601330552764748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3556e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.175767708977098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913428862710957, dt = 0.001601330552764748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 321.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (74.1%)
Info: cfl dt = 0.0016013205947100152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5680e+05 | 262144 | 1 | 3.991e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.443549332008843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4929442168238604, dt = 0.0016013205947100152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1907.00 ns (0.6%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 999.00 ns (0.3%)
LB compute : 295.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.3%)
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.4593e+05 | 262144 | 1 | 4.058e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.20447431725963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49454553741857044, dt = 0.0016013099238360467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1384.00 ns (0.4%)
gen split merge : 1150.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 332.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.8%)
Info: cfl dt = 0.0016012987024565742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3433e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.148299711428308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4961468473424065, dt = 0.0016012987024565742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 312.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.7%)
Info: cfl dt = 0.001601287095574869 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3488e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16041770728845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49774814604486306, dt = 0.001601287095574869
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1220.00 ns (0.3%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 356.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (75.7%)
Info: cfl dt = 0.0016012752770187817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3469e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.156001551022975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49934943314043795, dt = 0.0016012752770187817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1644.00 ns (0.5%)
gen split merge : 795.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 282.30 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.2%)
Info: cfl dt = 0.001601263432004667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3304e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.119688500074776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5009507084174567, dt = 0.001601263432004667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 883.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 314.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
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.1777e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584865561618946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5025519718494613, dt = 0.0016012517558991073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.0%)
patch tree reduce : 1227.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 299.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (69.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 | 7.2723e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.991645795953053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041532236053604, dt = 0.0016012404499445364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1319.00 ns (0.4%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 278.93 us (94.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.8%)
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 | 7.3352e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1298638707489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505754464055305, dt = 0.0016012297158308987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1435.00 ns (0.4%)
gen split merge : 773.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1224.00 ns (0.4%)
LB compute : 318.43 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1985.00 ns (68.8%)
Info: cfl dt = 0.0016012197469160465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3392e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.138656427503367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5073556937711359, dt = 0.0016012197469160465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1530.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 295.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (66.6%)
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.8700e+05 | 262144 | 1 | 3.816e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.106657543407307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.508956913518052, dt = 0.0016012107173187025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.3%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 296.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1808.00 ns (67.9%)
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.8108e+05 | 262144 | 1 | 3.849e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.976385684420283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5105581242353706, dt = 0.0016012027761832138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 1156.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 274.82 us (93.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1851.00 ns (66.9%)
Info: cfl dt = 0.0016011960365732852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3463e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15384650853579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5121593270115539, dt = 0.0016011960365732852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 324.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.7%)
Info: cfl dt = 0.0016011905706491546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3667e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.198687359543456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5137605230481271, dt = 0.0016011905706491546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 807.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 310.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (69.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 | 7.4126e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.299565601760523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153617136187763, dt = 0.0016011864153082098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 1301.00 ns (0.4%)
gen split merge : 848.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 346.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.3%)
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.9124e+05 | 262144 | 1 | 3.792e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.19957721402995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5169629000340845, dt = 0.0016011835830801848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 274.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (69.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 | 7.3491e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.159934855558138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5185640836171647, dt = 0.001601182071960027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.4%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 1220.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 264.86 us (93.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (68.3%)
Info: cfl dt = 0.0016011818708778752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2772e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.001728340637335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5201652656891247, dt = 0.0016011818708778752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.3%)
LB compute : 311.17 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.7%)
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.8650e+05 | 262144 | 1 | 3.819e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.095403988243048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5217664475600026, dt = 0.0016011829579180375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 285.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (71.1%)
Info: cfl dt = 0.0016011853094775013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3182e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.091849654053835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5233676305179206, dt = 0.0016011853094775013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 278.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1869.00 ns (68.6%)
Info: cfl dt = 0.0016011889050692066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2864e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02205932458766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5249688158273981, dt = 0.0016011889050692066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1314.00 ns (0.4%)
LB compute : 299.83 us (94.1%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.7%)
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.8389e+05 | 262144 | 1 | 3.833e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.03813799373531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5265700047324673, dt = 0.0016011937330047523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.2%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 295.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1891.00 ns (67.0%)
Info: cfl dt = 0.0016011997909505756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1442e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.70941313210694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.528171198465472, dt = 0.0009954682011946714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.1%)
patch tree reduce : 1257.00 ns (0.4%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.4%)
LB compute : 267.97 us (93.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (67.9%)
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.4832e+05 | 262144 | 1 | 4.043e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.86301331264704 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 136.289219196 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0005.vtk [VTK Dump][rank=0]
- took 35.84 ms, bandwidth = 1.06 GB/s
amr::Godunov: t = 0.5291666666666667, dt = 0.0016012077682784418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1687.00 ns (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 312.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (68.2%)
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.9707e+05 | 262144 | 1 | 3.761e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.328075267672533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5307678744349451, dt = 0.0016012143913672922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.0%)
patch tree reduce : 1321.00 ns (0.4%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 758.00 ns (0.2%)
LB compute : 288.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.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 | 7.1839e+05 | 262144 | 1 | 3.649e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.79686740789184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5323690888263124, dt = 0.0016012221111951397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1341.00 ns (0.4%)
gen split merge : 1185.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 278.99 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.4%)
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 | 7.2255e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.888539337300408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5339703109375076, dt = 0.0016012316389787484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1281.00 ns (0.4%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1395.00 ns (0.4%)
LB compute : 295.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.5%)
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 | 7.3351e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.129521828983155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5355715425764863, dt = 0.0016012430446411172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 864.00 ns (0.3%)
LB compute : 272.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1907.00 ns (68.4%)
Info: cfl dt = 0.0016012557310018437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2807e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01016549719282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5371727856211275, dt = 0.0016012557310018437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1345.00 ns (0.4%)
gen split merge : 760.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 848.00 ns (0.3%)
LB compute : 294.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.2%)
Info: cfl dt = 0.001601269460791612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2730e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.993192308515942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387740413521294, dt = 0.001601269460791612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 1024.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 857.00 ns (0.3%)
LB compute : 278.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (68.9%)
Info: cfl dt = 0.001601284033974662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3454e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.152652314955596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.540375310812921, dt = 0.001601284033974662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 277.78 us (93.8%)
LB move op cnt : 0
LB apply : 2.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.8%)
Info: cfl dt = 0.001601299300243217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2808e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.010731103820703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5419765948468956, dt = 0.001601299300243217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1334.00 ns (0.4%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1174.00 ns (0.4%)
LB compute : 277.84 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (69.9%)
Info: cfl dt = 0.0016013151624374826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4589e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.402522288748337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5435778941471389, dt = 0.0016013151624374826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1357.00 ns (0.4%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 293.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.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.8723e+05 | 262144 | 1 | 3.815e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.112662258381771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5451792093095763, dt = 0.0016013315752040369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1175.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 818.00 ns (0.3%)
LB compute : 269.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1922.00 ns (68.6%)
Info: cfl dt = 0.0016013485377537047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7743e+05 | 262144 | 1 | 3.870e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.897309046130628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467805408847803, dt = 0.0016013485377537047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.2%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1319.00 ns (0.4%)
LB compute : 291.18 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (72.2%)
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.1935e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.620149267540087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5483818894225341, dt = 0.001601366083791967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 305.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1905.00 ns (67.5%)
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.5667e+05 | 262144 | 1 | 3.992e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.441130225316403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5499832555063261, dt = 0.0016013842641428686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1510.00 ns (0.5%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 306.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (68.8%)
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.8812e+05 | 262144 | 1 | 3.810e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.133006334803225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.551584639770469, dt = 0.0016014031352060817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.3%)
patch tree reduce : 1315.00 ns (0.5%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 265.31 us (93.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.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.6055e+05 | 262144 | 1 | 3.969e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.526729430033997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5531860429056751, dt = 0.0016014227432943184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 293.59 us (93.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1745.00 ns (67.1%)
Info: cfl dt = 0.0016014431158075549 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3691e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.206178498013013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5547874656489694, dt = 0.0016014431158075549
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1964.00 ns (0.7%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1040.00 ns (0.4%)
LB compute : 275.29 us (93.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (69.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.4731e+05 | 262144 | 1 | 4.050e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.235923722802523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.556388908764777, dt = 0.0016014643107885595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1489.00 ns (0.5%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 799.00 ns (0.3%)
LB compute : 299.32 us (94.4%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.5%)
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.2967e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.848240717175505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5579903730755655, dt = 0.0016014863565693936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.2%)
patch tree reduce : 1224.00 ns (0.4%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1195.00 ns (0.4%)
LB compute : 267.55 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1689.00 ns (64.3%)
Info: cfl dt = 0.0016015092091254195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3809e+05 | 262144 | 1 | 4.108e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.033661449537826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.559591859432135, dt = 0.0016015092091254195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.2%)
patch tree reduce : 1477.00 ns (0.5%)
gen split merge : 757.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 757.00 ns (0.3%)
LB compute : 269.46 us (93.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (67.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.1587e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.544996026707743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5611933686412603, dt = 0.00160153280770994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1505.00 ns (0.5%)
gen split merge : 1149.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 807.00 ns (0.3%)
LB compute : 275.94 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.2%)
Info: cfl dt = 0.001601557080136669 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8113e+05 | 262144 | 1 | 3.849e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.980526527089781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5627949014489703, dt = 0.001601557080136669
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 1105.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 273.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Info: cfl dt = 0.0016015819505895972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3044e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.065259175347283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5643964585291069, dt = 0.0016015819505895972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 1124.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.3%)
LB compute : 306.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.1%)
Info: cfl dt = 0.0016016073437809676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3059e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.068935864390976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5659980404796965, dt = 0.0016016073437809676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.0%)
patch tree reduce : 1334.00 ns (0.4%)
gen split merge : 807.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 325.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.4%)
Info: cfl dt = 0.0016016331826009512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2748e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.000779759176023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675996478234775, dt = 0.0016016331826009512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.6%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1248.00 ns (0.4%)
LB compute : 272.57 us (92.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (73.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 | 7.3258e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11312034106757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5692012810060785, dt = 0.001601659387071101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 767.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1080.00 ns (0.4%)
LB compute : 285.22 us (93.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.8%)
Info: cfl dt = 0.0016016858851279777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2752e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002065373307676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5708029403931496, dt = 0.0016016858851279777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.4%)
patch tree reduce : 1204.00 ns (0.4%)
gen split merge : 775.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 266.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1801.00 ns (67.3%)
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.3388e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.942762441686554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5724046262782776, dt = 0.0016017126050077656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 1816.00 ns (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 295.43 us (93.5%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (69.4%)
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.8662e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.103091800842472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5740063388832853, dt = 0.001601739482801048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1341.00 ns (0.5%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 272.56 us (92.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1851.00 ns (68.1%)
Info: cfl dt = 0.001601766460889083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2865e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.027673553145373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5756080783660864, dt = 0.001601766460889083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.2%)
patch tree reduce : 1207.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 268.69 us (93.5%)
LB move op cnt : 0
LB apply : 2.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1990.00 ns (68.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 | 7.2780e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00941691306204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5772098448269755, dt = 0.001601793488861083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.1%)
patch tree reduce : 1530.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1306.00 ns (0.4%)
LB compute : 296.82 us (92.9%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.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 | 7.3173e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09608199264386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5788116383158366, dt = 0.0016018205227417807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1584.00 ns (0.5%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 273.51 us (93.5%)
LB move op cnt : 0
LB apply : 2.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1761.00 ns (65.9%)
Info: cfl dt = 0.001601847523311459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4175e+05 | 262144 | 1 | 3.534e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.316867539167983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5804134588385784, dt = 0.001601847523311459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1048.00 ns (0.3%)
LB compute : 306.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.6%)
Info: cfl dt = 0.0016018744645912198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2686e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989489353568695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5820153063618899, dt = 0.0016018744645912198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.3%)
patch tree reduce : 1505.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 296.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (67.1%)
Info: cfl dt = 0.001601901324320236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2795e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01376400944384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5836171808264812, dt = 0.001601901324320236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 769.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1195.00 ns (0.4%)
LB compute : 278.05 us (93.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
Info: cfl dt = 0.0016019280742788015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3393e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14559167707663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5852190821508014, dt = 0.0016019280742788015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 277.74 us (93.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1847.00 ns (67.0%)
Info: cfl dt = 0.001601954678714643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2328e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.911450478240502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5868210102250803, dt = 0.001601954678714643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1580.00 ns (0.5%)
gen split merge : 833.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (69.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 | 7.2073e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.85570372256144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5884229649037949, dt = 0.0016019811072902513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 1627.00 ns (0.5%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 807.00 ns (0.3%)
LB compute : 296.94 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (72.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 | 7.2970e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.053390127403002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5900249460110851, dt = 0.0016020073390729252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1587.00 ns (0.5%)
gen split merge : 756.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 275.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1986.00 ns (69.2%)
Info: cfl dt = 0.0016020333621486543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2489e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94773830381988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.591626953350158, dt = 0.0016020333621486543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 273.54 us (93.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: cfl dt = 0.001602059169603222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2617e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.97613033154754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5932289867123067, dt = 0.001602059169603222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 337.47 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (74.3%)
Info: cfl dt = 0.0016020847587428359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2909e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.040567906388706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5948310458819099, dt = 0.0016020847587428359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 318.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.5%)
Info: cfl dt = 0.001602110125633281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2574e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.967155896771345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5964331306406527, dt = 0.001602110125633281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 299.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1729.00 ns (66.1%)
Info: cfl dt = 0.0016021352616888496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2863e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.031037426921998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.598035240766286, dt = 0.0016021352616888496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1186.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 306.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (73.5%)
Info: cfl dt = 0.0016021601485518822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2626e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.979057339313176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5996373760279748, dt = 0.0016021601485518822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (2.0%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 274.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1955.00 ns (68.7%)
Info: cfl dt = 0.0016021847561906654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3450e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16061550410048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6012395361765267, dt = 0.0016021847561906654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1589.00 ns (0.5%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1106.00 ns (0.4%)
LB compute : 273.05 us (92.3%)
LB move op cnt : 0
LB apply : 7.16 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.0%)
Info: cfl dt = 0.0016022090482169231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2301e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.908163889897814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6028417209327174, dt = 0.0016022090482169231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1711.00 ns (0.6%)
gen split merge : 1131.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 274.39 us (93.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1970.00 ns (68.8%)
Info: cfl dt = 0.0016022329836562835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3027e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06809003177787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6044439299809343, dt = 0.0016022329836562835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1720.00 ns (0.6%)
gen split merge : 1065.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 275.02 us (93.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.9%)
Info: cfl dt = 0.0016022565066324348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2178e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.881563947438357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6060461629645906, dt = 0.0016022565066324348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.3%)
patch tree reduce : 1315.00 ns (0.4%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 296.45 us (93.7%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1938.00 ns (70.0%)
Info: cfl dt = 0.0016022795501331438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2874e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03496227469922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6076484194712231, dt = 0.0016022795501331438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.2%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 270.08 us (93.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (69.4%)
Info: cfl dt = 0.0016023020390646852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2781e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.014790019199534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6092506990213562, dt = 0.0016023020390646852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1235.00 ns (0.3%)
gen split merge : 759.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1268.00 ns (0.3%)
LB compute : 347.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (67.4%)
Info: cfl dt = 0.0016023238938032746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2608e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.976909786354891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6108530010604208, dt = 0.0016023238938032746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1534.00 ns (0.5%)
gen split merge : 756.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 270.91 us (93.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.7%)
Info: cfl dt = 0.0016023450369798886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3531e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.180203678200098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6124553249542242, dt = 0.0016023450369798886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 294.27 us (93.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.8%)
Info: cfl dt = 0.0016023653952557167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2964e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05557816148478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.614057669991204, dt = 0.0016023653952557167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1319.00 ns (0.5%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1146.00 ns (0.4%)
LB compute : 274.30 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.60 us (93.1%)
Info: cfl dt = 0.0016023849175936225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2037e+05 | 262144 | 1 | 3.639e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.851848927869185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156600353864597, dt = 0.0016023849175936225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1433.00 ns (0.5%)
gen split merge : 1164.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1245.00 ns (0.4%)
LB compute : 286.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.5%)
Info: cfl dt = 0.0016024035581971813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3393e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.150414682052435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6172624203040533, dt = 0.0016024035581971813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.0%)
patch tree reduce : 1625.00 ns (0.5%)
gen split merge : 1125.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 810.00 ns (0.2%)
LB compute : 305.31 us (94.1%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1787.00 ns (66.6%)
Info: cfl dt = 0.0016024212779739639 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2958e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.054790048595624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6188648238622505, dt = 0.0016024212779739639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 768.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1210.00 ns (0.4%)
LB compute : 285.93 us (93.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.1%)
Info: cfl dt = 0.0016024380537837026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3642e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.205690721765684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6204672451402244, dt = 0.0016024380537837026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 1455.00 ns (0.5%)
gen split merge : 1164.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 877.00 ns (0.3%)
LB compute : 268.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1801.00 ns (66.8%)
Info: cfl dt = 0.001602453865174651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3158e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.099340453319776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6220696831940081, dt = 0.001602453865174651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.9%)
patch tree reduce : 1211.00 ns (0.3%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 327.14 us (94.4%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.0%)
Info: cfl dt = 0.001602468708335979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2716e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002179295572283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6236721370591828, dt = 0.001602468708335979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1635.00 ns (0.5%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1115.00 ns (0.4%)
LB compute : 282.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.6%)
Info: cfl dt = 0.0016024826128339647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3004e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.065776153789066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6252746057675188, dt = 0.0016024826128339647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1315.00 ns (0.4%)
gen split merge : 1099.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 304.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1888.00 ns (67.7%)
Info: cfl dt = 0.0016024956271667396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2928e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04909865139753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6268770883803527, dt = 0.0016024956271667396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1315.00 ns (0.4%)
LB compute : 296.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (73.1%)
Info: cfl dt = 0.0016025078067542998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2994e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.063737748934315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6284795840075195, dt = 0.0016025078067542998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1317.00 ns (0.5%)
LB compute : 269.03 us (93.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1855.00 ns (67.8%)
Info: cfl dt = 0.0016025190550443588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2778e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.016375525411334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6300820918142738, dt = 0.0016025190550443588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1521.00 ns (0.4%)
gen split merge : 1081.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1290.00 ns (0.4%)
LB compute : 319.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1945.00 ns (68.8%)
Info: cfl dt = 0.0016025284692910292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2249e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.900033305776885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6316846108693182, dt = 0.0016025284692910292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 994.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1326.00 ns (0.4%)
LB compute : 320.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.5%)
Info: cfl dt = 0.0016025363285416688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3507e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.176959687193417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6332871393386091, dt = 0.0016025363285416688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 291.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.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 | 7.3066e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.079938597014955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6348896756671508, dt = 0.0016025428741948675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1516.00 ns (0.5%)
gen split merge : 1116.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 315.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.3%)
Info: cfl dt = 0.0016025483125191365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1219e+05 | 262144 | 1 | 3.681e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.673601919379731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6364922185413456, dt = 0.0016025483125191365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1176.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 295.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (70.1%)
Info: cfl dt = 0.0016025527673833842 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9480e+05 | 262144 | 1 | 3.773e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.290914758431306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6380947668538648, dt = 0.0016025527673833842
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.4%)
LB compute : 277.80 us (93.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.5%)
Info: cfl dt = 0.0016025563147660084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0298e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.470931314786569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6396973196212482, dt = 0.0016025563147660084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 993.00 ns (0.3%)
gen split merge : 550.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 302.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (73.2%)
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.8383e+05 | 262144 | 1 | 3.833e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.049604411630447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6412998759360142, dt = 0.001602559029244346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (2.0%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 810.00 ns (0.3%)
LB compute : 267.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.9%)
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.9883e+05 | 262144 | 1 | 3.751e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.379735926197617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429024349652586, dt = 0.0016025610427657059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1024.00 ns (0.3%)
LB compute : 303.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (72.9%)
Info: cfl dt = 0.0016025623785240215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2625e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.983134227303312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6445049960080242, dt = 0.0016025623785240215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.2%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 274.41 us (93.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.7%)
Info: cfl dt = 0.0016025630492267648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2926e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.049339180443187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6461075583865483, dt = 0.0016025630492267648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.1%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 264.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1747.00 ns (68.1%)
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.7467e+05 | 262144 | 1 | 3.886e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.848044306695604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6477101214357751, dt = 0.0016025630629432446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.4%)
patch tree reduce : 1446.00 ns (0.3%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.2%)
LB compute : 426.70 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (72.3%)
Info: cfl dt = 0.0016025624280042769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9638e+05 | 262144 | 1 | 3.764e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.325908686143542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6493126844987184, dt = 0.0016025624280042769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.4%)
LB compute : 292.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
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.7980e+05 | 262144 | 1 | 3.856e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.960909658655924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6509152469267226, dt = 0.0016025611468479378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.4%)
patch tree reduce : 1131.00 ns (0.4%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1356.00 ns (0.5%)
LB compute : 265.50 us (92.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.5%)
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 | 7.1269e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.684656318147967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6525178080735706, dt = 0.0016025592173195252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1369.00 ns (0.4%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1054.00 ns (0.3%)
LB compute : 308.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (69.7%)
Info: cfl dt = 0.0016025566693805074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1296e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.690581990511491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6541203672908902, dt = 0.0016025566693805074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.1%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 312.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.5%)
Info: cfl dt = 0.0016025535456294182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3113e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.090527999186143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6557229239602707, dt = 0.0016025535456294182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1351.00 ns (0.4%)
LB compute : 300.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.4%)
Info: cfl dt = 0.0016025498369028094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3473e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16970150555661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573254775059001, dt = 0.0016025498369028094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1406.00 ns (0.4%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 314.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (72.6%)
Info: cfl dt = 0.001602545530883242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2358e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.924381993651174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6589280273428029, dt = 0.001602545530883242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1208.00 ns (0.4%)
LB compute : 296.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1886.00 ns (66.4%)
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.4926e+05 | 262144 | 1 | 4.038e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.28856033911165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6605305728736861, dt = 0.0009277604596472644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.4%)
patch tree reduce : 1544.00 ns (0.5%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 281.57 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.7%)
Info: cfl dt = 0.001602540511084447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3406e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.352519708192442 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 167.39097535300002 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0006.vtk [VTK Dump][rank=0]
- took 38.41 ms, bandwidth = 1015.26 MB/s
amr::Godunov: t = 0.6614583333333334, dt = 0.001602540511084447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.9%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 347.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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 | 7.3004e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06647915406004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6630608738444178, dt = 0.001602533270241182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 810.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.3%)
LB compute : 324.78 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.09 us (70.4%)
Info: cfl dt = 0.0016025263644908266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2380e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.929065131803348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664663407114659, dt = 0.0016025263644908266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1678.00 ns (0.5%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 304.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1737.00 ns (66.1%)
Info: cfl dt = 0.00160252027340078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2120e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.87160722064477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6662659334791499, dt = 0.00160252027340078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1205.00 ns (0.4%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1119.00 ns (0.3%)
LB compute : 310.40 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (69.7%)
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.8276e+05 | 262144 | 1 | 3.839e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.025640333739414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6678684537525507, dt = 0.0016025152345840814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 1142.00 ns (0.4%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 272.57 us (93.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1886.00 ns (67.9%)
Info: cfl dt = 0.001602511311639814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2827e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02718103079973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6694709689871348, dt = 0.001602511311639814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1514.00 ns (0.4%)
gen split merge : 823.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 735.00 ns (0.2%)
LB compute : 319.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (73.0%)
Info: cfl dt = 0.0016025084820613022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3030e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.071773179374457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6710734802987746, dt = 0.0016025084820613022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 1010.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 14.11 us (3.8%)
LB compute : 335.59 us (91.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (76.8%)
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.6469e+05 | 262144 | 1 | 3.944e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.627835998329365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6726759887808359, dt = 0.001602506704212331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 853.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 297.49 us (90.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.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.8910e+05 | 262144 | 1 | 3.804e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.165178584370627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6742784954850483, dt = 0.0016025059655813416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1504.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 305.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1870.00 ns (68.1%)
Info: cfl dt = 0.0016025063028471153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8585e+05 | 262144 | 1 | 3.822e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.093641716799281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6758810014506296, dt = 0.0016025063028471153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1380.00 ns (0.4%)
gen split merge : 1164.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 292.58 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.2%)
Info: cfl dt = 0.0016025078022431569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3256e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12147761491089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774835077534767, dt = 0.0016025078022431569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 308.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (68.7%)
Info: cfl dt = 0.001602510586708291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2543e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.964692548487017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6790860155557198, dt = 0.001602510586708291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 295.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.9%)
Info: cfl dt = 0.0016025147984676075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3167e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10201198362442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.680688526142428, dt = 0.0016025147984676075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 1480.00 ns (0.5%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 282.35 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1815.00 ns (66.7%)
Info: cfl dt = 0.0016025205706338686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2922e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.048128369563674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6822910409408957, dt = 0.0016025205706338686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1106.00 ns (0.3%)
LB compute : 299.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (68.5%)
Info: cfl dt = 0.0016025280301967143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3494e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17394054474637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6838935615115295, dt = 0.0016025280301967143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.0%)
patch tree reduce : 1518.00 ns (0.4%)
gen split merge : 1138.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.2%)
LB compute : 337.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.2%)
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.4190e+05 | 262144 | 1 | 4.084e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.12658471499213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6854960895417261, dt = 0.0016025372763557877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.7%)
patch tree reduce : 1707.00 ns (0.4%)
gen split merge : 846.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 834.00 ns (0.2%)
LB compute : 384.88 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (74.9%)
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.5168e+05 | 262144 | 1 | 4.023e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.341842263567955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.687098626818082, dt = 0.0016025484102763245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1176.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 288.18 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.3%)
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.2645e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.786724606364261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6887011752283583, dt = 0.0016025615556484623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.2%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 312.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.9%)
Info: cfl dt = 0.0016025766519705985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2464e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94766412731445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6903037367840067, dt = 0.0016025766519705985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 306.76 us (93.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1937.00 ns (70.5%)
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.6391e+05 | 262144 | 1 | 3.948e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.611424613720812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6919063134359773, dt = 0.001602593674379365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1250.00 ns (0.4%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1456.00 ns (0.4%)
LB compute : 319.68 us (94.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.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 | 7.2005e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.84714615943339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6935089071103566, dt = 0.0016026125563650515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.4%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 288.85 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.2%)
Info: cfl dt = 0.0016026331731211676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2542e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.965488814527259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6951115196667217, dt = 0.0016026331731211676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.3%)
patch tree reduce : 1441.00 ns (0.5%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 264.51 us (93.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1766.00 ns (12.3%)
Info: cfl dt = 0.0016026553489817273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6799e+05 | 262144 | 1 | 3.924e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.701675972922844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6967141528398428, dt = 0.0016026553489817273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.5%)
LB compute : 265.67 us (93.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.0%)
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.1866e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.616130106775957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6983168081888246, dt = 0.0016026788824123177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.2%)
patch tree reduce : 1315.00 ns (0.4%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1179.00 ns (0.4%)
LB compute : 300.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.00 ns (68.5%)
Info: cfl dt = 0.0016027035549316157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2453e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.946511780435427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6999194870712369, dt = 0.0016027035549316157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 277.93 us (93.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.4%)
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.6584e+05 | 262144 | 1 | 3.937e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.654941792050705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015221906261685, dt = 0.0016027291326007288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.2%)
patch tree reduce : 1661.00 ns (0.5%)
gen split merge : 1076.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 808.00 ns (0.3%)
LB compute : 287.94 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1982.00 ns (69.2%)
Info: cfl dt = 0.0016027553661710615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3364e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.147444866948373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7031249197587692, dt = 0.0016027553661710615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1390.00 ns (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 269.96 us (93.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1860.00 ns (68.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 | 7.3163e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.103581847597322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7047276751249403, dt = 0.0016027820020151169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1706.00 ns (0.5%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.3%)
LB compute : 316.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.2%)
Info: cfl dt = 0.0016028087969288919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3868e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.25895163106913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7063304571269554, dt = 0.0016028087969288919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.4%)
patch tree reduce : 1604.00 ns (0.5%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 749.00 ns (0.2%)
LB compute : 290.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.0%)
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.0058e+05 | 262144 | 1 | 4.365e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.219447626251748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079332659238843, dt = 0.001602835530867807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1184.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 287.96 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.4%)
Info: cfl dt = 0.001602861810216569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2814e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02753011348181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7095361014547521, dt = 0.001602861810216569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.5%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.3%)
LB compute : 278.39 us (93.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1972.00 ns (69.4%)
Info: cfl dt = 0.0016028874992043646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2529e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.964999221116681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7111389632649686, dt = 0.0016028874992043646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 1169.00 ns (0.3%)
gen split merge : 1167.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1188.00 ns (0.3%)
LB compute : 339.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.8%)
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.9814e+05 | 262144 | 1 | 3.755e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.367600975046983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.712741850764173, dt = 0.001602912579695846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1261.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 873.00 ns (0.3%)
LB compute : 298.57 us (93.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.9%)
Info: cfl dt = 0.0016029370412804006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2427e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.943026985453841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7143447633438688, dt = 0.0016029370412804006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.4%)
patch tree reduce : 1545.00 ns (0.5%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 289.21 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1817.00 ns (68.3%)
Info: cfl dt = 0.0016029608931723534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2607e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.982890214595601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159477003851492, dt = 0.0016029608931723534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 899.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 312.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1895.00 ns (68.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.9181e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.229035177473804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7175506612783216, dt = 0.001602984063123024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.4%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 293.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.7%)
Info: cfl dt = 0.0016030065282423935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2910e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.050072907301825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7191536453414445, dt = 0.0016030065282423935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1637.00 ns (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 292.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.8%)
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.7969e+05 | 262144 | 1 | 3.857e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.962560955431949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.720756651869687, dt = 0.0016030282236919992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.2%)
patch tree reduce : 1631.00 ns (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 266.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (73.1%)
Info: cfl dt = 0.0016030490402747643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2867e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.041047383819272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7223596800933789, dt = 0.0016030490402747643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.9%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 870.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1137.00 ns (0.3%)
LB compute : 333.78 us (94.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1959.00 ns (70.0%)
Info: cfl dt = 0.0016030688914240292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2787e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02373573048159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7239627291336537, dt = 0.0016030688914240292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 1017.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1248.00 ns (0.4%)
LB compute : 315.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (76.3%)
Info: cfl dt = 0.0016030876670731196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2989e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06835080754918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255657980250777, dt = 0.0016030876670731196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.4%)
patch tree reduce : 1379.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 788.00 ns (0.3%)
LB compute : 273.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.0%)
Info: cfl dt = 0.0016031052505175167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4243e+05 | 262144 | 1 | 4.081e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.14302856399363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7271688856921508, dt = 0.0016031052505175167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.2%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.2%)
LB compute : 322.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.1%)
Info: cfl dt = 0.0016031215299859456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2703e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.005826211550055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7287719909426683, dt = 0.0016031215299859456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.2%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 835.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 315.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (74.3%)
Info: cfl dt = 0.0016031364287506119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2076e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.867892416590442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7303751124726543, dt = 0.0016031364287506119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 309.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: cfl dt = 0.0016031499038894003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3451e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1706743324504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.731978248901405, dt = 0.0016031499038894003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 295.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.5%)
Info: cfl dt = 0.0016031619678276005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2815e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.030877441621204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7335813988052944, dt = 0.0016031619678276005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.0%)
patch tree reduce : 1176.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 307.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (70.3%)
Info: cfl dt = 0.0016031726918133717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3352e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14919704750199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.735184560773122, dt = 0.0016031726918133717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.2%)
patch tree reduce : 1640.00 ns (0.5%)
gen split merge : 869.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (69.7%)
Info: cfl dt = 0.001603182198162931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0098e+05 | 262144 | 1 | 3.740e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.43286261513021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7367877334649354, dt = 0.001603182198162931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.0%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 773.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 306.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1980.00 ns (68.8%)
Info: cfl dt = 0.0016031906312606297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0225e+05 | 262144 | 1 | 3.733e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.461003783412878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7383909156630983, dt = 0.0016031906312606297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 309.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.2%)
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.4376e+05 | 262144 | 1 | 4.072e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.173342452176996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7399941062943589, dt = 0.001603198125524976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.3%)
LB compute : 305.91 us (94.0%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.3%)
Info: cfl dt = 0.0016032048217145083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2786e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.024968684439646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415973044198839, dt = 0.0016032048217145083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.1%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 818.00 ns (0.3%)
LB compute : 288.86 us (93.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.6%)
Info: cfl dt = 0.001603210829198019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3280e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13383262333998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7432005092415984, dt = 0.001603210829198019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.4%)
LB compute : 288.51 us (93.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.0%)
Info: cfl dt = 0.001603216226446468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2988e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.069531686936546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7448037200707964, dt = 0.001603216226446468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.2%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 1150.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 283.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.8%)
Info: cfl dt = 0.0016032210510216135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2988e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.069674822352138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7464069362972429, dt = 0.0016032210510216135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1318.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 985.00 ns (0.3%)
LB compute : 291.51 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Info: cfl dt = 0.0016032252982541293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3264e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.130383429068615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7480101573482645, dt = 0.0016032252982541293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 289.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.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.6446e+05 | 262144 | 1 | 3.945e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62945198104737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7496133826465186, dt = 0.0016032289448794897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 1235.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 784.00 ns (0.2%)
LB compute : 309.22 us (93.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1976.00 ns (69.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.3965e+05 | 262144 | 1 | 4.098e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.083215873404715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7512166115913981, dt = 0.0016032319622380992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1366.00 ns (0.4%)
gen split merge : 1161.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 294.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (72.6%)
Info: cfl dt = 0.001603234323273067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2993e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.070828362739025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7528198435536362, dt = 0.001603234323273067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.1%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 321.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (74.4%)
Info: cfl dt = 0.0016032360115701646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3069e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.087755091981737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7544230778769092, dt = 0.0016032360115701646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.9%)
patch tree reduce : 1444.00 ns (0.4%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.2%)
LB compute : 333.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.1%)
Info: cfl dt = 0.0016032370219987802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2407e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.941809926792578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7560263138884794, dt = 0.0016032370219987802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 1179.00 ns (0.3%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.2%)
LB compute : 342.19 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.5%)
Info: cfl dt = 0.0016032373706524512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3322e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.143444291577985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576295509104782, dt = 0.0016032373706524512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 1201.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 788.00 ns (0.2%)
LB compute : 337.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.01 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.4%)
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.5702e+05 | 262144 | 1 | 3.990e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.465744977508452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7592327882811307, dt = 0.0016032370915759011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.8%)
patch tree reduce : 1291.00 ns (0.3%)
gen split merge : 1200.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 350.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.2%)
Info: cfl dt = 0.0016032361948571062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4461e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.394196292670344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7608360253727067, dt = 0.0016032361948571062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 298.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1754.00 ns (66.4%)
Info: cfl dt = 0.0016032347915598984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3380e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.156194105137118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7624392615675638, dt = 0.0016032347915598984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 1149.00 ns (0.3%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1196.00 ns (0.4%)
LB compute : 313.33 us (94.1%)
LB move op cnt : 0
LB apply : 2.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (72.0%)
Info: cfl dt = 0.0016032330193053131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2523e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.967352982697944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7640424963591237, dt = 0.0016032330193053131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 295.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.3%)
Info: cfl dt = 0.0016032309893989941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3360e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15163442016025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.765645729378429, dt = 0.0016032309893989941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1586.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 790.00 ns (0.2%)
LB compute : 299.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1702.00 ns (66.1%)
Info: cfl dt = 0.0016032287429485347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3099e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09413578484301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.767248960367828, dt = 0.0016032287429485347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.2%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 775.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 267.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1665.00 ns (63.4%)
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.8210e+05 | 262144 | 1 | 3.843e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.017731380221749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7688521891107765, dt = 0.0016032262742395774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 320.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (73.3%)
Info: cfl dt = 0.0016032235470422123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2627e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.990358985069133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770455415385016, dt = 0.0016032235470422123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 281.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1941.00 ns (68.1%)
Info: cfl dt = 0.0016032204991766718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2844e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0379833500049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7720586389320583, dt = 0.0016032204991766718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 301.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1992.00 ns (69.3%)
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.6373e+05 | 262144 | 1 | 3.950e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613257190835622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.773661859431235, dt = 0.0016032170516318202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1344.00 ns (0.5%)
LB compute : 267.14 us (93.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (72.9%)
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.7444e+05 | 262144 | 1 | 3.887e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.849030724887175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7752650764828668, dt = 0.001603213119832898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1544.00 ns (0.5%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 310.05 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.6%)
Info: cfl dt = 0.0016032088102497727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3120e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09856124051458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7768682896026997, dt = 0.0016032088102497727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 312.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.4%)
Info: cfl dt = 0.0016032039420970671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2278e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.91334532768304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7784714984129495, dt = 0.0016032039420970671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1123.00 ns (0.4%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 275.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (72.9%)
Info: cfl dt = 0.001603198316428017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2609e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.985975920167684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7800747023550466, dt = 0.001603198316428017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1158.00 ns (0.4%)
LB compute : 292.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (76.8%)
Info: cfl dt = 0.001603191803457339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2695e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00489594488651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7816779006714746, dt = 0.001603191803457339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1595.00 ns (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1156.00 ns (0.4%)
LB compute : 289.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.8%)
Info: cfl dt = 0.00160318435159101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2293e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.91631808161856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7832810924749319, dt = 0.00160318435159101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 969.00 ns (0.3%)
LB compute : 285.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.6%)
Info: cfl dt = 0.0016031759954462403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2180e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.891355545781076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.784884276826523, dt = 0.0016031759954462403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 1330.00 ns (0.4%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 997.00 ns (0.3%)
LB compute : 311.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (68.9%)
Info: cfl dt = 0.0016031668202079832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2599e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98367440199686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7864874528219692, dt = 0.0016031668202079832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1416.00 ns (0.5%)
gen split merge : 1159.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 783.00 ns (0.3%)
LB compute : 273.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.2%)
Info: cfl dt = 0.00160315689690988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3016e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07529091527206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7880906196421772, dt = 0.00160315689690988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 1149.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 774.00 ns (0.3%)
LB compute : 287.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.3%)
Info: cfl dt = 0.0016031462920382588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3057e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.084302785496853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7896937765390871, dt = 0.0016031462920382588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.4%)
patch tree reduce : 1611.00 ns (0.5%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 780.00 ns (0.3%)
LB compute : 288.78 us (93.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.8%)
Info: cfl dt = 0.0016031350538593156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3071e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.087277909838303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7912969228311254, dt = 0.0016031350538593156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.4%)
patch tree reduce : 1561.00 ns (0.5%)
gen split merge : 793.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.3%)
LB compute : 272.96 us (93.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.4%)
Info: cfl dt = 0.0016031232068759122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2966e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.063889374422324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7929000578849847, dt = 0.000849942115015212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 281.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.5%)
Info: cfl dt = 0.00160311634300565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2457e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.457365023160007 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 198.65085361200002 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0007.vtk [VTK Dump][rank=0]
- took 39.26 ms, bandwidth = 993.33 MB/s
amr::Godunov: t = 0.79375, dt = 0.00160311634300565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 307.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.7%)
Info: cfl dt = 0.001603101514112209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2221e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.899805902773043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7953531163430057, dt = 0.001603101514112209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1319.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1207.00 ns (0.4%)
LB compute : 308.57 us (94.2%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (73.9%)
Info: cfl dt = 0.0016030872099520538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2496e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.960222201196217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7969562178571179, dt = 0.0016030872099520538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 1119.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 279.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (69.5%)
Info: cfl dt = 0.0016030731984946636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1437e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.726986142878658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.79855930506707, dt = 0.0016030731984946636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 1158.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1128.00 ns (0.4%)
LB compute : 284.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.0%)
Info: cfl dt = 0.0016030593012524197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2742e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.013953854111246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8001623782655646, dt = 0.0016030593012524197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 1391.00 ns (0.5%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1144.00 ns (0.4%)
LB compute : 278.00 us (93.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (72.3%)
Info: cfl dt = 0.001603045197728303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3874e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.263102844341027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.801765437566817, dt = 0.001603045197728303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.3%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 979.00 ns (0.3%)
LB compute : 281.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1935.00 ns (67.5%)
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.6308e+05 | 262144 | 1 | 3.953e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597309942541168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8033684827645452, dt = 0.0016030305345388163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 301.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (73.7%)
Info: cfl dt = 0.0016030150630360867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2647e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.992632256788479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.804971513299084, dt = 0.0016030150630360867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (2.3%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 849.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 773.00 ns (0.2%)
LB compute : 321.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1965.00 ns (66.6%)
Info: cfl dt = 0.001602998711726593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1733e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.791430868086628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8065745283621201, dt = 0.001602998711726593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 848.00 ns (0.2%)
LB compute : 322.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.3%)
Info: cfl dt = 0.0016029815862519006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2361e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.929390713995058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081775270738467, dt = 0.0016029815862519006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1546.00 ns (0.5%)
gen split merge : 1139.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.3%)
LB compute : 274.23 us (93.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (67.8%)
Info: cfl dt = 0.001602963925227425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3099e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09164205213658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8097805086600987, dt = 0.001602963925227425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 273.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.7%)
Info: cfl dt = 0.0016029449389489685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2563e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.973483760182717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8113834725853261, dt = 0.0016029449389489685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.1%)
patch tree reduce : 1561.00 ns (0.5%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 760.00 ns (0.2%)
LB compute : 311.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.5%)
Info: cfl dt = 0.0016029184652173961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2447e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94780504455865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.812986417524275, dt = 0.0016029184652173961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 1030.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1125.00 ns (0.4%)
LB compute : 300.77 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (69.5%)
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.4129e+05 | 262144 | 1 | 4.088e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.116547373023996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8145893359894925, dt = 0.0016028913492318892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 985.00 ns (0.3%)
LB compute : 302.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1930.00 ns (68.1%)
Info: cfl dt = 0.001602863798196203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2242e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90222221070693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161922273387243, dt = 0.001602863798196203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 768.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1140.00 ns (0.4%)
LB compute : 270.18 us (93.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.4%)
Info: cfl dt = 0.0016028360752132573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2897e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.046023536457767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8177950911369205, dt = 0.0016028360752132573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1016.00 ns (0.3%)
LB compute : 275.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.2%)
Info: cfl dt = 0.0016028084811607203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2901e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.046609312834445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8193979272121338, dt = 0.0016028084811607203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 304.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (73.8%)
Info: cfl dt = 0.0016027811701388704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3503e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17892220664179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8210007356932945, dt = 0.0016027811701388704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1176.00 ns (0.4%)
LB compute : 301.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (74.6%)
Info: cfl dt = 0.0016027543520720786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3085e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08665897887679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8226035168634334, dt = 0.0016027543520720786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1159.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 273.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.9%)
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 | 7.3392e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15388353745813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8242062712155055, dt = 0.001602728247050656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 1205.00 ns (0.3%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 325.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (73.6%)
Info: cfl dt = 0.001602703059990877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2026e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.852955881515364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8258089994625561, dt = 0.001602703059990877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.1%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 305.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1952.00 ns (69.4%)
Info: cfl dt = 0.0016026789716808148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2758e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.013935204395377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.827411702522547, dt = 0.0016026789716808148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.8%)
patch tree reduce : 1198.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 343.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (74.3%)
Info: cfl dt = 0.0016026561338230872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2958e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.057546430449623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8290143814942278, dt = 0.0016026561338230872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1776.00 ns (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 310.36 us (94.1%)
LB move op cnt : 0
LB apply : 2.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1998.00 ns (69.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 | 7.3802e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.243164432253888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8306170376280508, dt = 0.0016026346713323247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 955.00 ns (0.3%)
gen split merge : 503.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1187.00 ns (0.4%)
LB compute : 300.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (74.1%)
Info: cfl dt = 0.0016026146892086917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5471e+05 | 262144 | 1 | 4.004e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.409425708801237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8322196722993832, dt = 0.0016026146892086917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.5%)
patch tree reduce : 1599.00 ns (0.5%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1099.00 ns (0.4%)
LB compute : 278.10 us (92.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1910.00 ns (68.4%)
Info: cfl dt = 0.0016025962807035585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2256e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.902513726764818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8338222869885918, dt = 0.0016025962807035585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1300.00 ns (0.4%)
LB compute : 281.72 us (93.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.1%)
Info: cfl dt = 0.0016025794874560183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2672e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.993890968316416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8354248832692954, dt = 0.0016025794874560183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1363.00 ns (0.5%)
gen split merge : 1144.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 873.00 ns (0.3%)
LB compute : 279.99 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.9%)
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 | 7.2574e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972056800720509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8370274627567514, dt = 0.0016025643884444642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.2%)
patch tree reduce : 1712.00 ns (0.5%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 312.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1791.00 ns (67.8%)
Info: cfl dt = 0.0016025510896023312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7610e+05 | 262144 | 1 | 3.877e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.879485007387142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8386300271451959, dt = 0.0016025510896023312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.6%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 970.00 ns (0.3%)
LB compute : 271.78 us (92.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1795.00 ns (66.4%)
Info: cfl dt = 0.001602539694808876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3381e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.948654838549942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8402325782347981, dt = 0.001602539694808876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.6%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 1166.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 271.00 us (92.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1919.00 ns (69.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.3632e+05 | 262144 | 1 | 4.120e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.003826596626627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841835117929607, dt = 0.0016025302765295306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1364.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1015.00 ns (0.3%)
LB compute : 305.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.7%)
Info: cfl dt = 0.0016025228857944017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2189e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.886961137708727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8434376482061365, dt = 0.0016025228857944017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 318.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (70.3%)
Info: cfl dt = 0.001602517551199873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2583e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.97349828441249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.845040171091931, dt = 0.001602517551199873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 277.67 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1998.00 ns (69.4%)
Info: cfl dt = 0.0016025143393577164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2304e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.912191350915803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8466426886431309, dt = 0.0016025143393577164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.5%)
patch tree reduce : 1171.00 ns (0.4%)
gen split merge : 936.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1318.00 ns (0.4%)
LB compute : 278.07 us (93.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (68.3%)
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.8098e+05 | 262144 | 1 | 3.850e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.986478835269754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8482452029824886, dt = 0.001602513429106726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 1355.00 ns (0.5%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1147.00 ns (0.4%)
LB compute : 273.88 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1955.00 ns (68.9%)
Info: cfl dt = 0.0016025147295762971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2495e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.954018809058692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8498477164115954, dt = 0.0016025147295762971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 317.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (68.8%)
Info: cfl dt = 0.001602518127916714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1763e+05 | 262144 | 1 | 3.653e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.792968807354674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8514502311411717, dt = 0.001602518127916714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.20 us (2.7%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 984.00 ns (0.3%)
LB compute : 278.85 us (93.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.7%)
Info: cfl dt = 0.0016025234948604807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2760e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.012472891098934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8530527492690884, dt = 0.0016025234948604807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1925.00 ns (0.6%)
gen split merge : 1144.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 282.82 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
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.8079e+05 | 262144 | 1 | 3.851e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.982310255556367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8546552727639488, dt = 0.0016025307371860121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.2%)
patch tree reduce : 1248.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1286.00 ns (0.4%)
LB compute : 312.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.6%)
Info: cfl dt = 0.0016025397566845896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2960e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.056646913713493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8562578035011348, dt = 0.0016025397566845896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.0%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 766.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 316.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.6%)
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.4628e+05 | 262144 | 1 | 4.056e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.223005453595947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8578603432578193, dt = 0.0016025504180879617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 313.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.8%)
Info: cfl dt = 0.001602562578049507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2526e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.961374835090107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8594628936759073, dt = 0.001602562578049507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.0%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 312.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1816.00 ns (67.0%)
Info: cfl dt = 0.0016025760760995662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2720e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00413405115741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8610654562539568, dt = 0.0016025760760995662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.4%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 277.78 us (93.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (72.5%)
Info: cfl dt = 0.0016025907646564645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2069e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.860948150782445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8626680323300564, dt = 0.0016025907646564645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 1226.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 312.94 us (94.0%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (70.2%)
Info: cfl dt = 0.0016026064700639091 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8245e+05 | 262144 | 1 | 3.841e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.019426348731026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8642706230947129, dt = 0.0016026064700639091
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1301.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 308.40 us (94.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (66.6%)
Info: cfl dt = 0.0016026229657631185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1190e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.667921390969774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8658732295647769, dt = 0.0016026229657631185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1265.00 ns (0.4%)
LB compute : 278.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1871.00 ns (69.4%)
Info: cfl dt = 0.001602639969674518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7978e+05 | 262144 | 1 | 3.856e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.961156907845927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8674758525305399, dt = 0.001602639969674518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 269.83 us (93.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.9%)
Info: cfl dt = 0.001602657144806639 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2989e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.064078125856696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8690784925002144, dt = 0.001602657144806639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 270.00 us (93.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.1%)
Info: cfl dt = 0.001602674211409259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1088e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.64592911393081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8706811496450211, dt = 0.001602674211409259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1109.00 ns (0.4%)
LB compute : 290.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (72.6%)
Info: cfl dt = 0.0016026909469064187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2734e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.008202037034486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8722838238564303, dt = 0.0016026909469064187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.2%)
patch tree reduce : 1496.00 ns (0.5%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 272.61 us (93.5%)
LB move op cnt : 0
LB apply : 2.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.6%)
Info: cfl dt = 0.0016027071779796274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3780e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.238590685230864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8738865148033368, dt = 0.0016027071779796274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 755.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 968.00 ns (0.3%)
LB compute : 305.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.3%)
Info: cfl dt = 0.0016027227944079652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3133e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.096469202869233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8754892219813164, dt = 0.0016027227944079652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 773.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1119.00 ns (0.3%)
LB compute : 313.46 us (93.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.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.9273e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.246997048792734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8770919447757244, dt = 0.0016027376907496672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.1%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 302.67 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.5%)
Info: cfl dt = 0.0016027514997137694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2469e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.950531456109161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8786946824664741, dt = 0.0016027514997137694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1731.00 ns (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1191.00 ns (0.4%)
LB compute : 284.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.7%)
Info: cfl dt = 0.0016027642108425455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2890e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04349650335317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8802974339661879, dt = 0.0016027642108425455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.2%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1226.00 ns (0.4%)
LB compute : 314.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.7%)
Info: cfl dt = 0.0016027760008704834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2433e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.942940146016085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8819001981770305, dt = 0.0016027760008704834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 835.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1311.00 ns (0.4%)
LB compute : 324.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (69.1%)
Info: cfl dt = 0.0016027869961241616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2749e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01253937835729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8835029741779009, dt = 0.0016027869961241616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.1%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1195.00 ns (0.4%)
LB compute : 320.59 us (94.1%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.9640e+05 | 262144 | 1 | 3.764e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.328479716489314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8851057611740251, dt = 0.0016027972909444538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.3%)
patch tree reduce : 1305.00 ns (0.4%)
gen split merge : 1087.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 279.16 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (72.2%)
Info: cfl dt = 0.0016028065750849905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3395e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.154994289419125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8867085584649695, dt = 0.0016028065750849905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.4%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1198.00 ns (0.4%)
LB compute : 296.97 us (93.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.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 | 7.2961e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.059548264730093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8883113650400545, dt = 0.0016028148437606054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1352.00 ns (0.5%)
gen split merge : 1087.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 960.00 ns (0.3%)
LB compute : 277.50 us (93.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (69.1%)
Info: cfl dt = 0.0016028221958903795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2954e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05816315180717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.889914179883815, dt = 0.0016028221958903795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1246.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1354.00 ns (0.5%)
LB compute : 279.25 us (93.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.6%)
Info: cfl dt = 0.0016028286808619089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3380e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151899656826615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8915170020797054, dt = 0.0016028286808619089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1259.00 ns (0.4%)
LB compute : 281.89 us (93.6%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.9%)
Info: cfl dt = 0.0016028343829208682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2627e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.986355973503466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8931198307605673, dt = 0.0016028343829208682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 299.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (72.7%)
Info: cfl dt = 0.0016028392989003507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1089e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.64770378521597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8947226651434882, dt = 0.0016028392989003507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 319.53 us (94.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.3%)
Info: cfl dt = 0.0016028435321079903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2593e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.97897060992539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8963255044423886, dt = 0.0016028435321079903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1680.00 ns (0.5%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 305.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (74.6%)
Info: cfl dt = 0.0016028472419249542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2918e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05043926953549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979283479744966, dt = 0.0016028472419249542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 825.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1119.00 ns (0.4%)
LB compute : 275.06 us (93.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1850.00 ns (67.2%)
Info: cfl dt = 0.001602850563070733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3090e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.088412705636685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8995311952164216, dt = 0.001602850563070733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 1294.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 983.00 ns (0.3%)
LB compute : 278.84 us (93.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (70.1%)
Info: cfl dt = 0.0016028536077947273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2930e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05321554273148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9011340457794923, dt = 0.0016028536077947273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 300.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.7%)
Info: cfl dt = 0.0016028564584681926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2318e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.918622763353147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9027368993872871, dt = 0.0016028564584681926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 798.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 320.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (74.6%)
Info: cfl dt = 0.0016028591644393906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2365e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.928889997988678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9043397558457552, dt = 0.0016028591644393906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1407.00 ns (0.5%)
gen split merge : 1062.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 274.72 us (93.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (68.6%)
Info: cfl dt = 0.0016028617553642231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3810e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.246966123185487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059426150101946, dt = 0.0016028617553642231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 1281.00 ns (0.4%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 326.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (74.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.6856e+05 | 262144 | 1 | 3.921e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.716362344058638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9075454767655587, dt = 0.0016028642864362901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.0%)
patch tree reduce : 1267.00 ns (0.3%)
gen split merge : 810.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.2%)
LB compute : 344.85 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.5%)
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.3885e+05 | 262144 | 1 | 4.103e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.062450832625785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.909148341051995, dt = 0.0016028667897627503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 739.00 ns (0.2%)
LB compute : 295.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1946.00 ns (69.4%)
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.1526e+05 | 262144 | 1 | 4.261e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.54312260698955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9107512078417578, dt = 0.0016028692624403087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1371.00 ns (0.4%)
gen split merge : 1058.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 306.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.5%)
Info: cfl dt = 0.0016028716892449795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3033e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.076002961451724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9123540771041981, dt = 0.0016028716892449795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.2%)
patch tree reduce : 1934.00 ns (0.6%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 294.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (72.4%)
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 | 5.9526e+05 | 262144 | 1 | 4.404e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.103027341765731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9139569487934431, dt = 0.0016028740469329094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.8%)
patch tree reduce : 1524.00 ns (0.4%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 339.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.8%)
Info: cfl dt = 0.001602876303702996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1385e+05 | 262144 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.713438668315659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9155598228403761, dt = 0.001602876303702996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1136.00 ns (0.3%)
LB compute : 308.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.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 | 7.2849e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035639341896978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9171626991440791, dt = 0.0016028784411982629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1584.00 ns (0.5%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 785.00 ns (0.2%)
LB compute : 311.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.4%)
Info: cfl dt = 0.0016028804286573972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2513e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.961705433574174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9187655775852773, dt = 0.0016028804286573972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 800.00 ns (0.2%)
LB compute : 323.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.6%)
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.6038e+05 | 262144 | 1 | 3.970e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.53638259491017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9203684580139347, dt = 0.0016028821994531518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.0%)
patch tree reduce : 1699.00 ns (0.5%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 315.88 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (74.2%)
Info: cfl dt = 0.0016028837476931611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2326e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.920601792296171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219713402133879, dt = 0.0016028837476931611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1696.00 ns (0.5%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 883.00 ns (0.3%)
LB compute : 301.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.4%)
Info: cfl dt = 0.001602885099997432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2425e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94235718612034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.923574223961081, dt = 0.001602885099997432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.1%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 1099.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 306.45 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.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 | 7.2709e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.004805202806455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9251771090610784, dt = 0.0008645576055882342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.3%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 295.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.6%)
Info: cfl dt = 0.0016028870518811085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2916e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.657296712989176 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 229.81277983400003 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0008.vtk [VTK Dump][rank=0]
- took 37.44 ms, bandwidth = 1.02 GB/s
amr::Godunov: t = 0.9260416666666667, dt = 0.0016028870518811085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.1%)
patch tree reduce : 1458.00 ns (0.4%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.2%)
LB compute : 321.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.4%)
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.0292e+05 | 262144 | 1 | 4.348e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.271723034655789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9276445537185478, dt = 0.0016028858332930332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1171.00 ns (0.3%)
gen split merge : 885.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 337.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.8%)
Info: cfl dt = 0.00160288493924326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2668e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.995862778118862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292474395518409, dt = 0.00160288493924326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.9%)
patch tree reduce : 1360.00 ns (0.4%)
gen split merge : 845.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 320.18 us (91.3%)
LB move op cnt : 0
LB apply : 14.29 us (4.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1930.00 ns (68.4%)
Info: cfl dt = 0.0016028844390159286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2783e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02127088626809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9308503244910841, dt = 0.0016028844390159286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.3%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 275.57 us (93.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1968.00 ns (69.3%)
Info: cfl dt = 0.0016028842360210622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3483e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.175311657492195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9324532089301, dt = 0.0016028842360210622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.4%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 1039.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1199.00 ns (0.4%)
LB compute : 276.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (68.7%)
Info: cfl dt = 0.001602884006248181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2980e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.064615492228032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.934056093166121, dt = 0.001602884006248181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1250.00 ns (0.4%)
gen split merge : 1137.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1190.00 ns (0.3%)
LB compute : 332.15 us (94.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (74.5%)
Info: cfl dt = 0.0016028832838967412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2375e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.931393833436978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9356589771723692, dt = 0.0016028832838967412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.4%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 274.91 us (93.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (68.3%)
Info: cfl dt = 0.0016028816034180566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3137e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.099125781068384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.937261860456266, dt = 0.0016028816034180566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 1140.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1229.00 ns (0.4%)
LB compute : 327.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (72.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 | 7.2008e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.850670480736486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388647420596841, dt = 0.001602878798752913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1502.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 726.00 ns (0.2%)
LB compute : 302.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1818.00 ns (67.0%)
Info: cfl dt = 0.0016028747746079446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2336e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.922846698156963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9404676208584369, dt = 0.0016028747746079446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 1273.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1189.00 ns (0.4%)
LB compute : 279.81 us (93.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.0%)
Info: cfl dt = 0.001602869608687129 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1952e+05 | 262144 | 1 | 3.643e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.83809444052162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9420704956330449, dt = 0.001602869608687129
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 1120.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 276.65 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.7%)
Info: cfl dt = 0.001602863451838481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3348e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.145456259265167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9436733652417321, dt = 0.001602863451838481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1399.00 ns (0.5%)
gen split merge : 1165.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 271.58 us (93.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (68.1%)
Info: cfl dt = 0.0016028564644456186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3070e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.084129770042942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9452762286935705, dt = 0.0016028564644456186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1478.00 ns (0.5%)
gen split merge : 1197.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 307.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1897.00 ns (69.6%)
Info: cfl dt = 0.0016028487759151408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2693e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00109605178646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468790851580161, dt = 0.0016028487759151408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 1470.00 ns (0.4%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 321.64 us (94.4%)
LB move op cnt : 0
LB apply : 2.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1869.00 ns (67.3%)
Info: cfl dt = 0.0016028404656449667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2241e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.901571442719831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9484819339339312, dt = 0.0016028404656449667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 290.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
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.1550e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.548227737763405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9500847743995762, dt = 0.00160283171918674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.3%)
patch tree reduce : 1271.00 ns (0.4%)
gen split merge : 1178.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 290.73 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.2%)
Info: cfl dt = 0.0016028225136038806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3484e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17489616773167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9516876061187629, dt = 0.0016028225136038806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 987.00 ns (0.3%)
LB compute : 292.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (74.1%)
Info: cfl dt = 0.00160281267202228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2120e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.874708808601634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9532904286323668, dt = 0.00160281267202228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1125.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 300.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: cfl dt = 0.0016028020047380708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2462e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.949762832826421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.954893241304389, dt = 0.0016028020047380708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1158.00 ns (0.3%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 314.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.9%)
Info: cfl dt = 0.0016027903626833302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2450e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94702299133797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9564960433091271, dt = 0.0016027903626833302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.2%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1147.00 ns (0.4%)
LB compute : 288.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.8%)
Info: cfl dt = 0.00160277765601455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2422e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.940747985739968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9580988336718104, dt = 0.00160277765601455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 309.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.0%)
Info: cfl dt = 0.0016027638578812223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2542e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.966983644852428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9597016113278249, dt = 0.0016027638578812223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.9%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 325.32 us (94.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (68.9%)
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.1896e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.623646767581459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9613043751857062, dt = 0.001602748993975467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1248.00 ns (0.4%)
LB compute : 270.80 us (93.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
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 | 7.3390e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.153449830106975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9629071241796817, dt = 0.0016027331236708527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1495.00 ns (0.5%)
gen split merge : 1170.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 276.97 us (93.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1832.00 ns (67.7%)
Info: cfl dt = 0.0016027163275012183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2763e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01525013277087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9645098573033526, dt = 0.0016027163275012183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 1242.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1088.00 ns (0.3%)
LB compute : 297.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.1%)
Info: cfl dt = 0.001602698699299728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2026e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.852856973234372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9661125736308538, dt = 0.001602698699299728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.3%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 307.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.1%)
Info: cfl dt = 0.0016026791204757996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4731e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.44805979085206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9677152723301535, dt = 0.0016026791204757996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 312.02 us (94.5%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.1%)
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.8667e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.113318672597913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9693179514506294, dt = 0.001602652570471514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1245.00 ns (0.4%)
LB compute : 293.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1741.00 ns (67.0%)
Info: cfl dt = 0.0016026254967032533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5420e+05 | 262144 | 1 | 4.007e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.398415403956005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9709206040211009, dt = 0.0016026254967032533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1507.00 ns (0.5%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1189.00 ns (0.4%)
LB compute : 294.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1765.00 ns (66.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 | 7.2539e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96498750923117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9725232295178041, dt = 0.0016025979697262837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 281.15 us (93.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1880.00 ns (69.2%)
Info: cfl dt = 0.001602570065202679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2611e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.980396636826073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9741258274875304, dt = 0.001602570065202679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.5%)
patch tree reduce : 1431.00 ns (0.5%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 765.00 ns (0.3%)
LB compute : 275.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1868.00 ns (67.0%)
Info: cfl dt = 0.0016025418471118079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2102e+05 | 262144 | 1 | 3.636e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.868173197417946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9757283975527331, dt = 0.0016025418471118079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1646.00 ns (0.6%)
gen split merge : 759.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 280.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (72.0%)
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 | 7.3184e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.106011835871737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.977330939399845, dt = 0.0016025133773233254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 294.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (76.6%)
Info: cfl dt = 0.0016024847155917614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2186e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.886043344221331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789334527771683, dt = 0.0016024847155917614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.2%)
patch tree reduce : 1361.00 ns (0.5%)
gen split merge : 1077.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 280.30 us (93.7%)
LB move op cnt : 0
LB apply : 2.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.1%)
Info: cfl dt = 0.0016024559254115042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0938e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.611269290240065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.98053593749276, dt = 0.0016024559254115042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.4%)
patch tree reduce : 1731.00 ns (0.6%)
gen split merge : 1157.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 269.28 us (93.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.0%)
Info: cfl dt = 0.001602427080396128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1306e+05 | 262144 | 1 | 3.676e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.691963083842568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821383934181716, dt = 0.001602427080396128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.5%)
patch tree reduce : 1275.00 ns (0.5%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 262.94 us (93.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (74.4%)
Info: cfl dt = 0.0016023982670283995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2284e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.906850454802237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9837408204985677, dt = 0.0016023982670283995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 754.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 833.00 ns (0.3%)
LB compute : 306.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (68.4%)
Info: cfl dt = 0.00160236957249952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3193e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10655876002459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.985343218765596, dt = 0.00160236957249952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.5%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 272.70 us (93.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.4%)
Info: cfl dt = 0.0016023410766754305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3702e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21829494643289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9869455883380955, dt = 0.0016023410766754305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1330.00 ns (0.4%)
gen split merge : 1160.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1158.00 ns (0.4%)
LB compute : 305.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.0%)
Info: cfl dt = 0.0016023128485766994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3999e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28326328882709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.988547929414771, dt = 0.0016023128485766994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1525.00 ns (0.5%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 280.82 us (93.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (69.8%)
Info: cfl dt = 0.0016022849458883286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4360e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.362469142445224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901502422633477, dt = 0.0016022849458883286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.3%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1148.00 ns (0.4%)
LB compute : 285.33 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.6%)
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.8221e+05 | 262144 | 1 | 3.843e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.011454387467067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.991752527209236, dt = 0.0016022574166313947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1286.00 ns (0.4%)
LB compute : 303.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.4%)
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.9164e+05 | 262144 | 1 | 3.790e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.218672279829851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9933547846258675, dt = 0.0016022303019131473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1175.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1168.00 ns (0.4%)
LB compute : 281.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
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.6718e+05 | 262144 | 1 | 3.929e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.680234773558302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9949570149277807, dt = 0.0016022036273958024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1436.00 ns (0.5%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 265.59 us (92.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (68.0%)
Info: cfl dt = 0.0016021774064056873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3484e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.168592437963834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9965592185551765, dt = 0.0016021774064056873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 298.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (66.7%)
Info: cfl dt = 0.001602151652148265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3143e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.093387492614006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9981613959615822, dt = 0.001602151652148265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 1219.00 ns (0.3%)
gen split merge : 768.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 366.52 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (74.8%)
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 | 7.3029e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06799739949334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9997635476137304, dt = 0.0016021263749164505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 268.38 us (93.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (68.2%)
Info: cfl dt = 0.0016021015684047513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3955e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.271531428198287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.001365673988647, dt = 0.0016021015684047513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.1%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 823.00 ns (0.2%)
LB compute : 319.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (69.5%)
Info: cfl dt = 0.0016020772298921456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3614e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.19629304715671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0029677755570516, dt = 0.0016020772298921456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 303.95 us (94.1%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (68.7%)
Info: cfl dt = 0.0016020533576286344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3639e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2015064944614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045698527869438, dt = 0.0016020533576286344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 1016.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1298.00 ns (0.4%)
LB compute : 322.55 us (94.6%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (68.9%)
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 | 7.3126e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.088451824777376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0061719061445724, dt = 0.0016020299510646888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.2%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 311.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (73.4%)
Info: cfl dt = 0.0016020070223729077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3230e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.110994969491966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007773936095637, dt = 0.0016020070223729077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.7%)
patch tree reduce : 1615.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 750.00 ns (0.2%)
LB compute : 364.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (74.1%)
Info: cfl dt = 0.001601984585704248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2700e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.994227461850771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00937594311801, dt = 0.001601984585704248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.0%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 1129.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.2%)
LB compute : 329.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (75.1%)
Info: cfl dt = 0.0016019626348712731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3488e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16728031606522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109779277037143, dt = 0.0016019626348712731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.3%)
LB compute : 308.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (68.1%)
Info: cfl dt = 0.0016019411466588254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2329e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.911993074955712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0125798903385856, dt = 0.0016019411466588254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 795.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 278.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (67.1%)
Info: cfl dt = 0.0016019200947514627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0620e+05 | 262144 | 1 | 3.712e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.535863414301376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0141818314852444, dt = 0.0016019200947514627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1381.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 292.46 us (90.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.4%)
Info: cfl dt = 0.0016018994381453273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2744e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002948619612358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.015783751579996, dt = 0.0016018994381453273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1476.00 ns (0.5%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 777.00 ns (0.3%)
LB compute : 283.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.4%)
Info: cfl dt = 0.0016018791254272502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2193e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.881650835572568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0173856510181412, dt = 0.0016018791254272502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 342.26 us (94.9%)
LB move op cnt : 0
LB apply : 2.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (73.6%)
Info: cfl dt = 0.0016018590992361039 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3171e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.096524456037894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0189875301435685, dt = 0.0016018590992361039
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.0%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 274.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.6%)
Info: cfl dt = 0.0016018393012528621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2569e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.963761767506794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0205893892428046, dt = 0.0016018393012528621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1412.00 ns (0.5%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 977.00 ns (0.3%)
LB compute : 278.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1940.00 ns (69.8%)
Info: cfl dt = 0.001601819673451749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3890e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.254318943586693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221912285440575, dt = 0.001601819673451749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1340.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1519.00 ns (0.5%)
LB compute : 291.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.3%)
Info: cfl dt = 0.0016018001609326407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2408e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.927967057598194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0237930482175093, dt = 0.0016018001609326407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1696.00 ns (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.3%)
LB compute : 288.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.6%)
Info: cfl dt = 0.0016017807324694528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2917e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.039846275969648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0253948483784419, dt = 0.0016017807324694528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.3%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1285.00 ns (0.4%)
LB compute : 280.81 us (93.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.0%)
Info: cfl dt = 0.0016017613593983177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1034e+05 | 262144 | 1 | 3.690e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.62545353203041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0269966291109114, dt = 0.0016017613593983177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 764.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 287.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.7%)
Info: cfl dt = 0.00160174200502092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3003e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05828821207818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0285983904703098, dt = 0.00160174200502092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.5%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 278.38 us (93.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.0%)
Info: cfl dt = 0.0016017226241011344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2147e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.869909025402677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0302001324753307, dt = 0.0016017226241011344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 1154.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 296.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (72.3%)
Info: cfl dt = 0.0016017032152609014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2895e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.034298537680748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.031801855099432, dt = 0.0016017032152609014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 320.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.5%)
Info: cfl dt = 0.0016016837457569616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2702e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.991513339830018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0334035583146928, dt = 0.0016016837457569616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1585.00 ns (0.5%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 289.55 us (93.5%)
LB move op cnt : 0
LB apply : 4.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.3%)
Info: cfl dt = 0.0016016641642398065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2855e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02506490394758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0350052420604496, dt = 0.0016016641642398065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.0%)
patch tree reduce : 1547.00 ns (0.5%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 316.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (68.2%)
Info: cfl dt = 0.0016016444371748097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2500e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.946785640484253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0366069062246894, dt = 0.0016016444371748097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 1430.00 ns (0.4%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 744.00 ns (0.2%)
LB compute : 322.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.3%)
Info: cfl dt = 0.0016016245532981623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8891e+05 | 262144 | 1 | 3.805e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.152674734995369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0382085506618643, dt = 0.0016016245532981623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1194.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 278.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.5%)
Info: cfl dt = 0.0016016045224889908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3002e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05684361176727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0398101752151625, dt = 0.0016016045224889908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 294.22 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.9%)
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.3870e+05 | 262144 | 1 | 4.104e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.048053592261809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0414117797376514, dt = 0.001601584370255912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 300.32 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (75.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 | 7.3065e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07014373617933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0430133641079073, dt = 0.001601564131410151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 329.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.7%)
Info: cfl dt = 0.0016015438337056355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3221e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10443499529884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0446149282393176, dt = 0.0016015438337056355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1216.00 ns (0.4%)
LB compute : 303.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (69.8%)
Info: cfl dt = 0.0016015234974430237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3365e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.135766106530692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0462164720730232, dt = 0.0016015234974430237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1566.00 ns (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 294.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: cfl dt = 0.0016015031396178177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2781e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.007179850278856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.047817995570466, dt = 0.0016015031396178177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 795.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 985.00 ns (0.3%)
LB compute : 311.37 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.2%)
Info: cfl dt = 0.0016014827748482663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2883e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.029313469954033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0494194987100838, dt = 0.0016014827748482663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.2%)
patch tree reduce : 1600.00 ns (0.6%)
gen split merge : 766.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 270.62 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1902.00 ns (67.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 | 7.2699e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.988798517456194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.051020981484932, dt = 0.0016014624155770826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.4%)
patch tree reduce : 1768.00 ns (0.6%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 269.62 us (92.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.00 ns (69.1%)
Info: cfl dt = 0.001601442075168313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3214e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10183531877023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0526224439005092, dt = 0.001601442075168313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1356.00 ns (0.5%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 272.45 us (93.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.5%)
Info: cfl dt = 0.0016014217706937866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3167e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09111853179431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0542238859756774, dt = 0.0016014217706937866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1351.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1189.00 ns (0.4%)
LB compute : 299.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (69.8%)
Info: cfl dt = 0.0016014015383542853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3073e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07038074139256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0558253077463713, dt = 0.0016014015383542853
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1449.00 ns (0.5%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 281.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1907.00 ns (70.0%)
Info: cfl dt = 0.0016013814156501712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3536e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.171909552931066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0574267092847256, dt = 0.0009066240486077515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.4%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 983.00 ns (0.3%)
LB compute : 299.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.3%)
Info: cfl dt = 0.0016013723412934553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3327e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.1296400030733 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 260.604143796 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0009.vtk [VTK Dump][rank=0]
- took 35.41 ms, bandwidth = 1.08 GB/s
amr::Godunov: t = 1.0583333333333333, dt = 0.0016013723412934553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.8%)
patch tree reduce : 1361.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.2%)
LB compute : 341.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (77.4%)
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 | 7.0776e+05 | 262144 | 1 | 3.704e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.564643582789456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0599347056746269, dt = 0.0016013506591763165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1574.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1035.00 ns (0.3%)
LB compute : 307.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Info: cfl dt = 0.0016013292876077753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8276e+05 | 262144 | 1 | 3.839e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.014748463190756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0615360563338032, dt = 0.0016013292876077753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.2%)
LB compute : 332.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.9%)
Info: cfl dt = 0.0016013088512940147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2487e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94064775760062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.063137385621411, dt = 0.0016013088512940147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 326.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.3%)
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.8627e+05 | 262144 | 1 | 3.820e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.091454833484052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.064738694472705, dt = 0.0016012894771770265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.3%)
patch tree reduce : 1421.00 ns (0.5%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 283.93 us (92.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (69.7%)
Info: cfl dt = 0.001601271015296715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3202e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09747259194601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0663399839498822, dt = 0.001601271015296715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1361.00 ns (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 282.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (73.3%)
Info: cfl dt = 0.0016012532244748861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2757e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99932569484427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0679412549651788, dt = 0.0016012532244748861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1086.00 ns (0.3%)
gen split merge : 1166.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 313.22 us (94.3%)
LB move op cnt : 0
LB apply : 2.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.5%)
Info: cfl dt = 0.0016012358783368933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3354e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.130396965764383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0695425081896537, dt = 0.0016012358783368933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 1404.00 ns (0.4%)
gen split merge : 1149.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 299.14 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.8%)
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 | 7.2236e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.884520077537577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0711437440679905, dt = 0.0016012187761594789
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1781.00 ns (0.6%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 276.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1819.00 ns (67.4%)
Info: cfl dt = 0.0016012017977975628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3153e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0858350145769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0727449628441499, dt = 0.0016012017977975628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.3%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 293.80 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (72.2%)
Info: cfl dt = 0.0016011849154309223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0676e+05 | 262144 | 1 | 3.709e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.541032106499072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0743461646419474, dt = 0.0016011849154309223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 294.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.7%)
Info: cfl dt = 0.0016011681721815922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3369e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.133088101409708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0759473495573784, dt = 0.0016011681721815922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 1100.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1289.00 ns (0.4%)
LB compute : 277.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.1%)
Info: cfl dt = 0.0016011516145670627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2668e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.978679047414854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.07754851772956, dt = 0.0016011516145670627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.1%)
patch tree reduce : 1627.00 ns (0.5%)
gen split merge : 1120.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 308.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.3%)
Info: cfl dt = 0.0016011350432765792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2680e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.981138930439332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0791496693441271, dt = 0.0016011350432765792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1336.00 ns (0.4%)
gen split merge : 760.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 321.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.0%)
Info: cfl dt = 0.0016011185806649774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2108e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.855305510819347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0807508043874037, dt = 0.0016011185806649774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1230.00 ns (0.4%)
LB compute : 307.56 us (94.1%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (69.0%)
Info: cfl dt = 0.001601102445053882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7746e+05 | 262144 | 1 | 3.870e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.89593797805357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0823519229680687, dt = 0.001601102445053882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.1%)
patch tree reduce : 1329.00 ns (0.4%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 309.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (75.3%)
Info: cfl dt = 0.0016010867187099649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2775e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.001617588496856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0839530254131227, dt = 0.0016010867187099649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.5%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 278.56 us (93.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (68.7%)
Info: cfl dt = 0.0016010715072098081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2363e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.910819204596901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0855541121318326, dt = 0.0016010715072098081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1475.00 ns (0.4%)
gen split merge : 1151.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 325.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.8%)
Info: cfl dt = 0.0016010568575280583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2625e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.968315866739415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0871551836390425, dt = 0.0016010568575280583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1381.00 ns (0.5%)
gen split merge : 1159.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 280.92 us (92.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (70.9%)
Info: cfl dt = 0.0016010426990485948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2276e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.8914439278806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0887562404965705, dt = 0.0016010426990485948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 1089.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 277.07 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.3%)
Info: cfl dt = 0.0016010289955032883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3277e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.111345685125816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0903572831956192, dt = 0.0016010289955032883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1547.00 ns (0.5%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 280.87 us (93.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.5%)
Info: cfl dt = 0.0016010156983639063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1478e+05 | 262144 | 1 | 4.264e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516976546532915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0919583121911225, dt = 0.0016010156983639063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 1094.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1227.00 ns (0.4%)
LB compute : 286.11 us (93.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.8%)
Info: cfl dt = 0.001601002728575394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3192e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09250788948449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0935593278894864, dt = 0.001601002728575394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1388.00 ns (0.4%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 303.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.5%)
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.7586e+05 | 262144 | 1 | 3.879e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.859845522612673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0951603306180617, dt = 0.0016009900262506428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 1022.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1170.00 ns (0.4%)
LB compute : 269.89 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1866.00 ns (68.0%)
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.8861e+05 | 262144 | 1 | 3.807e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.139921314374414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0967613206443123, dt = 0.0016009775358266831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.2%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 960.00 ns (0.3%)
LB compute : 269.70 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1829.00 ns (66.9%)
Info: cfl dt = 0.001600965198316177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3341e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12482179620378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.098362298180139, dt = 0.001600965198316177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 758.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 275.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (74.0%)
Info: cfl dt = 0.001600952941936872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0842e+05 | 262144 | 1 | 3.700e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.575269821926977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0999632633784553, dt = 0.001600952941936872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.1%)
patch tree reduce : 1675.00 ns (0.6%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 273.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.5%)
Info: cfl dt = 0.0016009406994765645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2882e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02361644823905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1015642163203923, dt = 0.0016009406994765645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 277.31 us (93.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.5%)
Info: cfl dt = 0.0016009284342486051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2791e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.003505346535658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031651570198688, dt = 0.0016009284342486051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 284.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (69.8%)
Info: cfl dt = 0.001600916178738763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3033e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.056567499450548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1047660854541175, dt = 0.001600916178738763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 1068.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1334.00 ns (0.5%)
LB compute : 277.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (70.1%)
Info: cfl dt = 0.001600903872758988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3444e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14677776921994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1063670016328562, dt = 0.001600903872758988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 321.87 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.1%)
Info: cfl dt = 0.0016008915245074111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3756e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21534795084751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.107967905505615, dt = 0.0016008915245074111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.8%)
patch tree reduce : 1305.00 ns (0.4%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 970.00 ns (0.3%)
LB compute : 333.89 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.49 us (73.8%)
Info: cfl dt = 0.0016008790990780692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2502e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.93943066209363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1095687970301225, dt = 0.0016008790990780692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 1165.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1234.00 ns (0.4%)
LB compute : 315.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (73.1%)
Info: cfl dt = 0.0016008664881572438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8405e+05 | 262144 | 1 | 3.832e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.038639225817665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1111696761292005, dt = 0.0016008664881572438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 341.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (74.0%)
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.5952e+05 | 262144 | 1 | 3.975e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.49917272363854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1127705426173577, dt = 0.0016008535842310671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1626.00 ns (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1135.00 ns (0.4%)
LB compute : 276.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (69.7%)
Info: cfl dt = 0.0016008403058171057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3990e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.266143341803318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1143713962015889, dt = 0.0016008403058171057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.1%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 309.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.8%)
Info: cfl dt = 0.0016008265866534004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3266e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.106843342107478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.115972236507406, dt = 0.0016008265866534004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1540.00 ns (0.5%)
gen split merge : 769.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 273.76 us (93.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (68.1%)
Info: cfl dt = 0.0016008122439101237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3440e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14509758671864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1175730630940595, dt = 0.0016008122439101237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 303.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (71.3%)
Info: cfl dt = 0.0016007973860130867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2947e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.036496792885025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1191738753379696, dt = 0.0016007973860130867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1430.00 ns (0.4%)
gen split merge : 810.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 306.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (68.1%)
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.7491e+05 | 262144 | 1 | 3.884e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83700075080337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1207746727239827, dt = 0.0016007820727115727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.1%)
patch tree reduce : 1598.00 ns (0.5%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 289.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.0%)
Info: cfl dt = 0.001600766407671341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6707e+05 | 262144 | 1 | 3.930e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.66436015782019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1223754547966942, dt = 0.001600766407671341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1388.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 310.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.3%)
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.5428e+05 | 262144 | 1 | 4.007e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.383189354617224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1239762212043656, dt = 0.0016007504875589203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 301.45 us (94.3%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1842.00 ns (68.5%)
Info: cfl dt = 0.0016007344008288934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2293e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.892229222426812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255769716919244, dt = 0.0016007344008288934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 1281.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 331.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1847.00 ns (66.6%)
Info: cfl dt = 0.0016007182298412332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8557e+05 | 262144 | 1 | 3.824e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.070736815401157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1271777060927533, dt = 0.0016007182298412332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.3%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 1227.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.4%)
LB compute : 298.77 us (93.1%)
LB move op cnt : 0
LB apply : 4.88 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.0%)
Info: cfl dt = 0.0016007019530294797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2859e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.016196747815226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287784243225945, dt = 0.0016007019530294797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 337.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.3%)
Info: cfl dt = 0.0016006855249584666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4328e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.339089048967622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.130379126275624, dt = 0.0016006855249584666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1190.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 297.07 us (93.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (75.7%)
Info: cfl dt = 0.001600668900622301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2312e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.895597941537918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1319798118005824, dt = 0.001600668900622301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.0%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 999.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1207.00 ns (0.3%)
LB compute : 325.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1969.00 ns (68.8%)
Info: cfl dt = 0.0016006520491302564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2375e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.909452992721148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1335804807012047, dt = 0.0016006520491302564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.5%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 1042.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 273.19 us (93.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (69.8%)
Info: cfl dt = 0.001600634958192797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2964e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03874893161407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.135181132750335, dt = 0.001600634958192797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.4%)
patch tree reduce : 1607.00 ns (0.5%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 292.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (73.4%)
Info: cfl dt = 0.0016006176271223605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3742e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20946612443526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1367817677085277, dt = 0.0016006176271223605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 1006.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1278.00 ns (0.4%)
LB compute : 319.43 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (69.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.8903e+05 | 262144 | 1 | 3.805e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.145758718533294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.13838238533565, dt = 0.0016006000460755073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.4%)
LB compute : 270.14 us (93.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1814.00 ns (68.4%)
Info: cfl dt = 0.001600582206816589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3627e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.183829685031593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1399829853817256, dt = 0.001600582206816589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1204.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 287.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.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 | 7.2692e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.978132762994258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1415835675885422, dt = 0.0016005497482172075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1429.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1135.00 ns (0.4%)
LB compute : 288.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.1%)
Info: cfl dt = 0.0016005163493953514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3783e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.217546315017422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1431841173367594, dt = 0.0016005163493953514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 282.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.1%)
Info: cfl dt = 0.0016004826446857708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2855e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.013266651692234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1447846336861547, dt = 0.0016004826446857708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1160.00 ns (0.4%)
gen split merge : 1228.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1287.00 ns (0.4%)
LB compute : 288.68 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (71.4%)
Info: cfl dt = 0.0016004488192530226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3426e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.138510742002207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1463851163308405, dt = 0.0016004488192530226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 838.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.2%)
LB compute : 332.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.5%)
Info: cfl dt = 0.0016004150413319652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2378e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.907807915475304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1479855651500934, dt = 0.0016004150413319652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.1%)
patch tree reduce : 1701.00 ns (0.5%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1047.00 ns (0.3%)
LB compute : 318.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1955.00 ns (69.4%)
Info: cfl dt = 0.001600381569101762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3180e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.083707893614857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1495859801914254, dt = 0.001600381569101762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1220.00 ns (0.4%)
LB compute : 300.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.2%)
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 | 7.2823e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.004979030701776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1511863617605271, dt = 0.0016003483134379806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1190.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 278.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (74.2%)
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 | 7.2332e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.896780104595901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152786710073965, dt = 0.0016003151475225102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1087.00 ns (0.3%)
LB compute : 319.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.3%)
Info: cfl dt = 0.001600281989842904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3841e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.22805057369787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543870252214876, dt = 0.001600281989842904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 278.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (70.5%)
Info: cfl dt = 0.0016002488008476199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3080e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.060470697883417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1559873072113305, dt = 0.0016002488008476199
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.3%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 279.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (70.2%)
Info: cfl dt = 0.001600215600303729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2546e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.942831747787372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.157587556012178, dt = 0.001600215600303729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1344.00 ns (0.4%)
LB compute : 292.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.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 | 7.3238e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.094525615033053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1591877716124817, dt = 0.00160018243425895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.1%)
patch tree reduce : 1490.00 ns (0.5%)
gen split merge : 948.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1209.00 ns (0.4%)
LB compute : 281.03 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (66.1%)
Info: cfl dt = 0.0016001493552820093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2730e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.982623351648941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607879540467405, dt = 0.0016001493552820093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 302.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.2%)
Info: cfl dt = 0.0016001164032433568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2147e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.854164195976448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1623881034020225, dt = 0.0016001164032433568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.2%)
patch tree reduce : 1307.00 ns (0.4%)
gen split merge : 1113.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 275.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.5%)
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.7838e+05 | 262144 | 1 | 3.864e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.906946305731926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1639882198052658, dt = 0.0016000836627396058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.3%)
patch tree reduce : 1385.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 306.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1920.00 ns (69.6%)
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.7204e+05 | 262144 | 1 | 3.901e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.767170318760751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1655883034680055, dt = 0.0016000510883107783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.2%)
patch tree reduce : 1098.00 ns (0.3%)
gen split merge : 813.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 317.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: cfl dt = 0.0016000186370974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3163e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.076356049648446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1671883545563162, dt = 0.0016000186370974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.4%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1271.00 ns (0.4%)
LB compute : 276.80 us (93.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.2%)
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 | 6.9620e+05 | 262144 | 1 | 3.765e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.297492443666252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1687883731934137, dt = 0.0015999862657854705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.0%)
patch tree reduce : 1418.00 ns (0.4%)
gen split merge : 798.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 864.00 ns (0.3%)
LB compute : 321.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1962.00 ns (69.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 | 6.8646e+05 | 262144 | 1 | 3.819e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.08322732276472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.170388359459199, dt = 0.0015999539474115432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.4%)
patch tree reduce : 1349.00 ns (0.4%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 977.00 ns (0.3%)
LB compute : 288.33 us (93.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (77.7%)
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.1624e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.540139809497385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719883134066107, dt = 0.0015999216833931728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1385.00 ns (0.4%)
gen split merge : 838.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.2%)
LB compute : 325.95 us (94.6%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1842.00 ns (68.6%)
Info: cfl dt = 0.0015998895072686999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2688e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.970805790786953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1735882350900038, dt = 0.0015998895072686999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.3%)
patch tree reduce : 1180.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 269.00 us (93.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1887.00 ns (67.5%)
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.5389e+05 | 262144 | 1 | 4.009e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.36678582136209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1751881245972724, dt = 0.0015998574807514563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 299.17 us (94.4%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1916.00 ns (68.8%)
Info: cfl dt = 0.0015998256864949204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3265e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.096753962524215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1767879820780238, dt = 0.0015998256864949204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1559.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 945.00 ns (0.3%)
LB compute : 274.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1937.00 ns (67.8%)
Info: cfl dt = 0.001599794216233286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3234e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08970925275823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1783878077645187, dt = 0.001599794216233286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1670.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 318.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (66.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 | 7.1895e+05 | 262144 | 1 | 3.646e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.795200973587372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179987601980752, dt = 0.0015997631085797781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1541.00 ns (0.5%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 278.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.1%)
Info: cfl dt = 0.0015997324037384734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3048e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0481659579912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1815873650893318, dt = 0.0015997324037384734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.3%)
patch tree reduce : 1197.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 294.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.1%)
Info: cfl dt = 0.0015997021740094025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2820e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.997817881135047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1831870974930703, dt = 0.0015997021740094025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1352.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 278.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (68.1%)
Info: cfl dt = 0.0015996724860062666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3128e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.065212139541522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1847867996670798, dt = 0.0015996724860062666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1257.00 ns (0.4%)
gen split merge : 1017.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 297.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (73.7%)
Info: cfl dt = 0.0015996433726192607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3112e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.061272795466017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1863864721530861, dt = 0.0015996433726192607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 319.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.7%)
Info: cfl dt = 0.0015996148541566107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3864e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.226374295844373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1879861155257054, dt = 0.0015996148541566107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 285.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.4%)
Info: cfl dt = 0.0015995869194457757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3854e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.223756351348104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.189585730379862, dt = 0.0010392696201380058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 317.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Info: cfl dt = 0.001599572053981774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2912e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.40615815678558 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 291.558272397 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0010.vtk [VTK Dump][rank=0]
- took 40.63 ms, bandwidth = 959.79 MB/s
amr::Godunov: t = 1.190625, dt = 0.001599572053981774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 1570.00 ns (0.4%)
gen split merge : 830.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.2%)
LB compute : 334.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
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.8233e+05 | 262144 | 1 | 3.842e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.988613452129291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.192224572053982, dt = 0.001599542976409378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 302.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (68.2%)
Info: cfl dt = 0.0015995144130284472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3441e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13231311303762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938241150303912, dt = 0.0015995144130284472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 763.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 299.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1807.00 ns (67.7%)
Info: cfl dt = 0.0015994870033209168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0895e+05 | 262144 | 1 | 3.698e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.572887829023776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1954236294434197, dt = 0.0015994870033209168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 300.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (66.6%)
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.4158e+05 | 262144 | 1 | 4.086e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.092799767425799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1970231164467406, dt = 0.001599460905654336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 310.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1889.00 ns (67.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 | 7.1685e+05 | 262144 | 1 | 3.657e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.745850382461237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198622577352395, dt = 0.0015994360475107025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1497.00 ns (0.5%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 743.00 ns (0.3%)
LB compute : 273.81 us (93.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1999.00 ns (70.5%)
Info: cfl dt = 0.0015994122114172272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2971e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.028112251273082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2002220133999058, dt = 0.0015994122114172272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 925.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1268.00 ns (0.4%)
LB compute : 302.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.2%)
Info: cfl dt = 0.0015993891211316428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3654e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17784336567809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018214256113229, dt = 0.0015993891211316428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 764.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 271.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.4%)
Info: cfl dt = 0.001599366508357258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3287e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.097043885517504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2034208147324545, dt = 0.001599366508357258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 280.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (68.0%)
Info: cfl dt = 0.0015993441529088999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2984e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.030281988032378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.205020181240812, dt = 0.0015993441529088999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1271.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.2%)
LB compute : 338.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (75.2%)
Info: cfl dt = 0.0015993218986642254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3056e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.045675641001647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2066195253937209, dt = 0.0015993218986642254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1404.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 318.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: cfl dt = 0.0015992996515116927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2880e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.006943784880736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2082188472923852, dt = 0.0015992996515116927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 828.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 315.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.2%)
Info: cfl dt = 0.0015992773674572266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2678e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.962198517224508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2098181469438969, dt = 0.0015992773674572266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.7%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 359.74 us (94.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (73.2%)
Info: cfl dt = 0.0015992550377933368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2783e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.985028928056623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.211417424311354, dt = 0.0015992550377933368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1615.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 807.00 ns (0.2%)
LB compute : 304.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1967.00 ns (68.0%)
Info: cfl dt = 0.0015992326755404755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2977e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02750177365537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130166793491473, dt = 0.0015992326755404755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.0%)
patch tree reduce : 1544.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.2%)
LB compute : 353.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.3%)
Info: cfl dt = 0.0015992103045261129 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3100e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.054277089026318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146159120246878, dt = 0.0015992103045261129
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.2%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 834.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.4%)
LB compute : 315.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.6%)
Info: cfl dt = 0.0015991879518192573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3185e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0727315010177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216215122329214, dt = 0.0015991879518192573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 275.13 us (93.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (67.0%)
Info: cfl dt = 0.0015991656512828693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9549e+05 | 262144 | 1 | 3.769e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.273980053825367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2178143102810333, dt = 0.0015991656512828693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1720.00 ns (0.5%)
gen split merge : 835.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 301.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (73.7%)
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.4750e+05 | 262144 | 1 | 4.049e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.219777901299421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.219413475932316, dt = 0.0015991434429386557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1721.00 ns (0.5%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1136.00 ns (0.4%)
LB compute : 293.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.6%)
Info: cfl dt = 0.001599121337115784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3831e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21402726139779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2210126193752548, dt = 0.001599121337115784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.4%)
patch tree reduce : 1659.00 ns (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1128.00 ns (0.4%)
LB compute : 269.86 us (92.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1898.00 ns (68.4%)
Info: cfl dt = 0.0015990993617038271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3325e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1027106869826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2226117407123707, dt = 0.0015990993617038271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.2%)
LB compute : 324.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.8%)
Info: cfl dt = 0.0015990775158565623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4399e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33822209047157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2242108400740745, dt = 0.0015990775158565623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 275.73 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (73.9%)
Info: cfl dt = 0.0015990557522736737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4489e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35787183891011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.225809917589931, dt = 0.0015990557522736737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.9%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 843.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1115.00 ns (0.3%)
LB compute : 349.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.2%)
Info: cfl dt = 0.0015990340342629749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2910e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.010791872556428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2274089733422047, dt = 0.0015990340342629749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.4%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1271.00 ns (0.4%)
LB compute : 267.65 us (93.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.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 | 7.3799e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20584535910142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2290080073764675, dt = 0.0015990123389194833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1181.00 ns (0.3%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 319.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1940.00 ns (68.6%)
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 | 7.2826e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.992035947849551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.230607019715387, dt = 0.0015989906679599595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1023.00 ns (0.4%)
LB compute : 271.79 us (93.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (68.2%)
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.7200e+05 | 262144 | 1 | 3.901e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.756275376786656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232206010383347, dt = 0.0015989690288897274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1227.00 ns (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1161.00 ns (0.3%)
LB compute : 318.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1922.00 ns (68.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 | 7.3588e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.158841399755275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2338049794122368, dt = 0.0015989474208449681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 1364.00 ns (0.4%)
gen split merge : 1147.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 864.00 ns (0.3%)
LB compute : 308.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1866.00 ns (67.4%)
Info: cfl dt = 0.0015989258287340247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2010e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.812073548156292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2354039268330816, dt = 0.0015989258287340247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1216.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 307.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.5%)
Info: cfl dt = 0.0015989042250975506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3972e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.242691422454246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2370028526618158, dt = 0.0015989042250975506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.3%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 269.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (69.0%)
Info: cfl dt = 0.0015988825752216026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3189e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.070647570838215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386017568869132, dt = 0.0015988825752216026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1607.00 ns (0.5%)
gen split merge : 1099.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 764.00 ns (0.2%)
LB compute : 290.91 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.5%)
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 | 7.3677e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.177378945658965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2402006394621348, dt = 0.0015988608431945373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.2%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 279.95 us (93.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (69.2%)
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 | 7.2228e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.859138434603045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2417995003053293, dt = 0.0015988389833441305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1181.00 ns (0.4%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 312.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.0%)
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 | 7.2209e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.854758879049175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2433983392886734, dt = 0.0015988169371420414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.1%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 997.00 ns (0.3%)
LB compute : 279.09 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: cfl dt = 0.0015987946898867811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0487e+05 | 262144 | 1 | 3.719e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.476323878095567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2449971562258155, dt = 0.0015987946898867811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 289.34 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.4%)
Info: cfl dt = 0.001598772230663934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2626e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.945939182451216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2465959509157023, dt = 0.001598772230663934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.1%)
patch tree reduce : 1425.00 ns (0.4%)
gen split merge : 813.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 314.11 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1807.00 ns (68.3%)
Info: cfl dt = 0.001598749545282541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2297e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.873325761155272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2481947231463661, dt = 0.001598749545282541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 302.96 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1871.00 ns (68.3%)
Info: cfl dt = 0.0015987266156288259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1708e+05 | 262144 | 1 | 3.656e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.743932875261889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2497934726916486, dt = 0.0015987266156288259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.2%)
patch tree reduce : 1405.00 ns (0.5%)
gen split merge : 1143.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 807.00 ns (0.3%)
LB compute : 282.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.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 | 7.2780e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.978872099688244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2513921993072774, dt = 0.0015987034725988265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1177.00 ns (0.4%)
LB compute : 275.56 us (93.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1897.00 ns (69.3%)
Info: cfl dt = 0.0015986802765475608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2873e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.999093109138848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529909027798762, dt = 0.0015986802765475608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.2%)
patch tree reduce : 1688.00 ns (0.5%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 305.73 us (93.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1939.00 ns (68.3%)
Info: cfl dt = 0.0015986571101614666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3257e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.083155655419684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2545895830564238, dt = 0.0015986571101614666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.2%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 1144.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.3%)
LB compute : 316.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Info: cfl dt = 0.0015986339484398684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2829e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98896758137232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2561882401665851, dt = 0.0015986339484398684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1315.00 ns (0.4%)
gen split merge : 1139.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.2%)
LB compute : 323.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.8%)
Info: cfl dt = 0.0015986107341049124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2880e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99990994134802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257786874115025, dt = 0.0015986107341049124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1083.00 ns (0.3%)
LB compute : 324.57 us (94.1%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.4%)
Info: cfl dt = 0.0015985874210525212 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3285e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08875169987328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25938548484913, dt = 0.0015985874210525212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 1166.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 970.00 ns (0.3%)
LB compute : 323.70 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.33 us (73.0%)
Info: cfl dt = 0.0015985639886740915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3117e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.051470327515307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609840722701824, dt = 0.0015985639886740915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 985.00 ns (0.3%)
LB compute : 289.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: cfl dt = 0.0015985403926732495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3462e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12717443344268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2625826362588566, dt = 0.0015985403926732495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1174.00 ns (0.4%)
LB compute : 285.99 us (93.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.9%)
Info: cfl dt = 0.0015985165963730862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3191e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06723798491823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2641811766515298, dt = 0.0015985165963730862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 306.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1848.00 ns (67.8%)
Info: cfl dt = 0.0015984925559749592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3110e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.049396853643906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2657796932479028, dt = 0.0015984925559749592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 311.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (69.3%)
Info: cfl dt = 0.0015984681230449133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3217e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072604833638053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2673781858038777, dt = 0.0015984681230449133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1659.00 ns (0.5%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 295.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.9%)
Info: cfl dt = 0.0015984433355301835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3070e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04008636209152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2689766539269227, dt = 0.0015984433355301835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (1.2%)
patch tree reduce : 1208.00 ns (0.2%)
gen split merge : 756.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.1%)
LB compute : 616.24 us (96.5%)
LB move op cnt : 0
LB apply : 4.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (75.4%)
Info: cfl dt = 0.0015984182648232856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2301e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.870888828471728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.270575097262453, dt = 0.0015984182648232856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.2%)
patch tree reduce : 1340.00 ns (0.5%)
gen split merge : 1080.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1290.00 ns (0.4%)
LB compute : 277.31 us (93.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.7%)
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 | 7.3414e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.115124255033535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2721735155272762, dt = 0.0015983929906566313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.92 us (6.4%)
patch tree reduce : 1444.00 ns (0.5%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1186.00 ns (0.4%)
LB compute : 278.16 us (89.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.4%)
Info: cfl dt = 0.0015983675889697112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3883e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.217771887136074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2737719085179329, dt = 0.0015983675889697112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.2%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 835.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 299.75 us (93.9%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1947.00 ns (68.2%)
Info: cfl dt = 0.0015983421262750755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4084e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26158405751564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2753702761069026, dt = 0.0015983421262750755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1162.00 ns (0.4%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 997.00 ns (0.3%)
LB compute : 289.55 us (93.9%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.6%)
Info: cfl dt = 0.0015983166576157741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4231e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.293676119820827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2769686182331776, dt = 0.0015983166576157741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 996.00 ns (0.3%)
LB compute : 285.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.7%)
Info: cfl dt = 0.0015982912297388026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2423e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.896591486902938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785669348907933, dt = 0.0015982912297388026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1196.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 268.04 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.7%)
Info: cfl dt = 0.0015982658771730193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3875e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.214960818165938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.280165226120532, dt = 0.0015982658771730193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 783.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 295.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1755.00 ns (65.7%)
Info: cfl dt = 0.0015982406234760962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4247e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.296410946143414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.281763491997705, dt = 0.0015982406234760962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.2%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 976.00 ns (0.3%)
LB compute : 267.21 us (93.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (72.6%)
Info: cfl dt = 0.0015982155788698757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3416e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11373270873345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283361732621181, dt = 0.0015982155788698757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.3%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1287.00 ns (0.4%)
LB compute : 280.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.5%)
Info: cfl dt = 0.0015981907780822362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4045e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.251586278131075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2849599482000509, dt = 0.0015981907780822362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 282.43 us (93.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.7%)
Info: cfl dt = 0.001598166224029542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3300e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.893053262072845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286558138978133, dt = 0.001598166224029542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.1%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1054.00 ns (0.3%)
LB compute : 289.89 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.0%)
Info: cfl dt = 0.0015981419117837951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3506e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13268781470348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2881563052021627, dt = 0.0015981419117837951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 1127.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1289.00 ns (0.4%)
LB compute : 343.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.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 | 7.4098e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.262391318999303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2897544471139466, dt = 0.0015981160195968653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 807.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 310.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (73.1%)
Info: cfl dt = 0.0015980859256264073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3336e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.094822773258063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2913525631335434, dt = 0.0015980859256264073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 302.15 us (93.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.0%)
Info: cfl dt = 0.001598055894353124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1651e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.53018919361684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2929506490591698, dt = 0.001598055894353124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.2%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 301.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1868.00 ns (69.4%)
Info: cfl dt = 0.0015980260018797693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1144e+05 | 262144 | 1 | 3.685e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.613273045697696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.294548704953523, dt = 0.0015980260018797693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1438.00 ns (0.4%)
gen split merge : 1099.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 834.00 ns (0.3%)
LB compute : 305.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1871.00 ns (68.5%)
Info: cfl dt = 0.001597996313089555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1795e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.755722849116507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2961467309554027, dt = 0.001597996313089555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1305.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1194.00 ns (0.4%)
LB compute : 288.26 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.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 | 7.3658e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16424159153026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2977447272684923, dt = 0.001597966867476824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 1836.00 ns (0.6%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 290.54 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.4%)
Info: cfl dt = 0.001597937679314035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3703e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.173845120178974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2993426941359691, dt = 0.001597937679314035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 936.00 ns (0.3%)
LB compute : 291.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (72.7%)
Info: cfl dt = 0.0015979087444250096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2924e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002627187988747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3009406318152832, dt = 0.0015979087444250096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.0%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 304.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1812.00 ns (67.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.9344e+05 | 262144 | 1 | 3.780e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.216695896878708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3025385405597083, dt = 0.0015978800486052993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1607.00 ns (0.5%)
gen split merge : 1218.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1226.00 ns (0.4%)
LB compute : 294.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: cfl dt = 0.0015978515751901225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2987e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.016016414015965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3041364206083137, dt = 0.0015978515751901225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1320.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1148.00 ns (0.3%)
LB compute : 329.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: cfl dt = 0.001597823311788021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3703e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17269560263444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.305734272183504, dt = 0.001597823311788021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 289.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (67.1%)
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 | 7.4397e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32481622174166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073320954952918, dt = 0.0015977952339882033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1229.00 ns (0.3%)
LB compute : 333.73 us (94.8%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.8%)
Info: cfl dt = 0.0015977673333006388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3832e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20048129593763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3089298907292801, dt = 0.0015977673333006388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 281.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (68.8%)
Info: cfl dt = 0.0015977396225173683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3349e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.094170809587467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3105276580625809, dt = 0.0015977396225173683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1174.00 ns (0.4%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 304.93 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.1%)
Info: cfl dt = 0.0015977121307942587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3728e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.177198193738167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3121253976850982, dt = 0.0015977121307942587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.1%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 285.98 us (93.8%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: cfl dt = 0.001597684970760976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3337e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.091002112496128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3137231098158924, dt = 0.001597684970760976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.4%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 1046.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1218.00 ns (0.4%)
LB compute : 265.43 us (92.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1952.00 ns (71.0%)
Info: cfl dt = 0.001597658339027815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2443e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.894661767151524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153207947866534, dt = 0.001597658339027815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 294.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1979.00 ns (68.7%)
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.5776e+05 | 262144 | 1 | 3.985e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.43153832700216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3169184531256812, dt = 0.0015976322241093974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 957.00 ns (0.3%)
LB compute : 314.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: cfl dt = 0.0015976065868807089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3114e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.041228124655053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3185160853497906, dt = 0.0015976065868807089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1639.00 ns (0.5%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 299.98 us (94.2%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.5%)
Info: cfl dt = 0.001597581381663017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3669e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16276978975739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3201136919366714, dt = 0.001597581381663017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1280.00 ns (0.4%)
LB compute : 297.57 us (93.9%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1842.00 ns (69.9%)
Info: cfl dt = 0.0015975565709150485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4293e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.299403658941184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3217112733183345, dt = 0.001205393348332251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1579.00 ns (0.5%)
gen split merge : 1074.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1287.00 ns (0.4%)
LB compute : 308.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2000.00 ns (67.6%)
Info: cfl dt = 0.001597541286008514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2837e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.05705126932171 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 322.167998136 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0011.vtk [VTK Dump][rank=0]
- took 35.63 ms, bandwidth = 1.07 GB/s
amr::Godunov: t = 1.3229166666666667, dt = 0.001597541286008514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1465.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 803.00 ns (0.2%)
LB compute : 318.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (68.7%)
Info: cfl dt = 0.001597516400529528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0053e+05 | 262144 | 1 | 3.742e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.36877047626474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3245142079526753, dt = 0.001597516400529528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 313.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.5%)
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.7027e+05 | 262144 | 1 | 3.911e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.704816613607653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3261117243532048, dt = 0.0015974913642355624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1434.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 305.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1729.00 ns (66.1%)
Info: cfl dt = 0.0015974666477622014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3602e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14706639811242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3277092157174404, dt = 0.0015974666477622014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 320.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.6%)
Info: cfl dt = 0.0015974425466652087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2496e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.904081645134646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3293066823652027, dt = 0.0015974425466652087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.1%)
patch tree reduce : 1337.00 ns (0.4%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1139.00 ns (0.3%)
LB compute : 319.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (69.9%)
Info: cfl dt = 0.001597419197160476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0225e+05 | 262144 | 1 | 3.733e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.405571817354913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3309041249118678, dt = 0.001597419197160476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.03 us (2.7%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1006.00 ns (0.3%)
LB compute : 279.63 us (93.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.00 ns (68.5%)
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 | 6.3089e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.83986427057862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3325015441090282, dt = 0.0015973965812758457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.0%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 317.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.5%)
Info: cfl dt = 0.0015973745585718246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3656e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15791741893852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.334098940690304, dt = 0.0015973745585718246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 764.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 327.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (73.3%)
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 | 7.2445e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.891987973401163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3356963152488759, dt = 0.0015973529279309517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1577.00 ns (0.5%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 316.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (67.6%)
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.7214e+05 | 262144 | 1 | 3.900e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.744263044783187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3372936681768068, dt = 0.001597331467041781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1347.00 ns (0.4%)
gen split merge : 760.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1003.00 ns (0.3%)
LB compute : 312.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.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.2610e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.734154604488095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3388909996438487, dt = 0.0015973099988697223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (0.9%)
patch tree reduce : 1209.00 ns (0.2%)
gen split merge : 863.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 718.52 us (97.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.4%)
Info: cfl dt = 0.0015972884917960979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4001e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23272621172759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3404883096427185, dt = 0.0015972884917960979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 305.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1860.00 ns (67.9%)
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.8974e+05 | 262144 | 1 | 3.801e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.129666214722254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3420855981345146, dt = 0.0015972667989670604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1164.00 ns (0.4%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 288.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1864.00 ns (68.6%)
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.7884e+05 | 262144 | 1 | 3.862e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.89034386435662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3436828649334815, dt = 0.0015972448348949284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 1115.00 ns (0.4%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1215.00 ns (0.4%)
LB compute : 273.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1859.00 ns (67.0%)
Info: cfl dt = 0.0015972225672000742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9866e+05 | 262144 | 1 | 3.752e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.324973987415595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3452801097683764, dt = 0.0015972225672000742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 279.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (66.5%)
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.4542e+05 | 262144 | 1 | 4.062e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.156881240229458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3468773323355765, dt = 0.0015972000034877101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 269.45 us (93.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1785.00 ns (66.7%)
Info: cfl dt = 0.0015971771723601326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4757e+05 | 262144 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.397392673795576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3484745323390641, dt = 0.0015971771723601326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.3%)
patch tree reduce : 1380.00 ns (0.5%)
gen split merge : 1116.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 274.41 us (93.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1801.00 ns (67.8%)
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 | 7.1724e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.731856885730506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3500717095114243, dt = 0.001597154104618465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.2%)
patch tree reduce : 1688.00 ns (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.2%)
LB compute : 315.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: cfl dt = 0.0015971308218286659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3343e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.086770043782593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3516688636160428, dt = 0.0015971308218286659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1404.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 314.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (66.8%)
Info: cfl dt = 0.0015971073285945723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3298e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07659531469047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3532659944378715, dt = 0.0015971073285945723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1167.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 313.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1999.00 ns (68.9%)
Info: cfl dt = 0.0015970835881557244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3278e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.071908349643003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.354863101766466, dt = 0.0015970835881557244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1419.00 ns (0.5%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1105.00 ns (0.4%)
LB compute : 284.31 us (93.8%)
LB move op cnt : 0
LB apply : 2.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (68.0%)
Info: cfl dt = 0.0015970595471966427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2802e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.967456635484622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3564601853546219, dt = 0.0015970595471966427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1525.00 ns (0.5%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1239.00 ns (0.4%)
LB compute : 271.79 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.4%)
Info: cfl dt = 0.001597035160199711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3775e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1805900461345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3580572449018184, dt = 0.001597035160199711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1261.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 331.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.7%)
Info: cfl dt = 0.001597010385354242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2923e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.993420111330186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3596542800620182, dt = 0.001597010385354242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 1204.00 ns (0.3%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 326.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.3%)
Info: cfl dt = 0.001596985191017247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3325e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.081238793317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3612512904473724, dt = 0.001596985191017247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 859.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 332.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.1%)
Info: cfl dt = 0.001596959549376827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3478e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11466504951413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628482756383895, dt = 0.001596959549376827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1317.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 989.00 ns (0.3%)
LB compute : 340.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 : 2.73 us (73.6%)
Info: cfl dt = 0.001596933432428499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3014e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.012577967848596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3644452351877663, dt = 0.001596933432428499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 1145.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 987.00 ns (0.3%)
LB compute : 287.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: cfl dt = 0.0015969068111643507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4268e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.287354558728953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3660421686201947, dt = 0.0015969068111643507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 268.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (70.0%)
Info: cfl dt = 0.0015968796568413353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2791e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96319667053923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.367639075431359, dt = 0.0015968796568413353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 304.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.5%)
Info: cfl dt = 0.0015968519432212253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4367e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30856906990791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3692359550882003, dt = 0.0015968519432212253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1305.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 983.00 ns (0.3%)
LB compute : 317.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (75.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 | 7.3231e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.059152156979305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3708328070314215, dt = 0.0015968236473442392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1384.00 ns (0.5%)
gen split merge : 1065.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 286.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.6%)
Info: cfl dt = 0.0015967947492751653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2648e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.93094271183802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3724296306787658, dt = 0.0015967947492751653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 296.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.2%)
Info: cfl dt = 0.0015967652310769933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3769e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17644023884336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374026425428041, dt = 0.0015967652310769933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1310.00 ns (0.4%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 337.01 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.2%)
Info: cfl dt = 0.0015967350756569826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2730e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.948500332638535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.375623190659118, dt = 0.0015967350756569826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 302.33 us (94.3%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1931.00 ns (68.2%)
Info: cfl dt = 0.0015967042664610633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3295e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072077395058532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377219925734775, dt = 0.0015967042664610633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 276.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (67.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 | 7.3557e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12912966499068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.378816630001236, dt = 0.001596672788316712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 300.47 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.1%)
Info: cfl dt = 0.001596640625389737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2927e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.990754613837089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3804133027895529, dt = 0.001596640625389737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1537.00 ns (0.5%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 276.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.3%)
Info: cfl dt = 0.0015966077627863145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3826e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18756627006535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3820099434149427, dt = 0.0015966077627863145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 773.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 309.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1982.00 ns (69.2%)
Info: cfl dt = 0.0015965741923818055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9744e+05 | 262144 | 1 | 3.759e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.292020120748816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.383606551177729, dt = 0.0015965741923818055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.1%)
patch tree reduce : 1202.00 ns (0.2%)
gen split merge : 792.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 808.00 ns (0.1%)
LB compute : 560.65 us (96.5%)
LB move op cnt : 0
LB apply : 4.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.9%)
Info: cfl dt = 0.0015965399158959631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3288e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0689006954158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3852031253701107, dt = 0.0015965399158959631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.3%)
patch tree reduce : 1165.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 273.36 us (93.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.5%)
Info: cfl dt = 0.001596504947564527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3626e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14257984630973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3867996652860066, dt = 0.001596504947564527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 1227.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 794.00 ns (0.3%)
LB compute : 281.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.7%)
Info: cfl dt = 0.0015964693143896195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3913e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20510300375035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3883961702335712, dt = 0.0015964693143896195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.2%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 986.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 272.78 us (93.6%)
LB move op cnt : 0
LB apply : 2.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.5%)
Info: cfl dt = 0.0015964330534576831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3048e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01517457567618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.389992639547961, dt = 0.0015964330534576831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 1570.00 ns (0.5%)
gen split merge : 1147.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 290.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.7%)
Info: cfl dt = 0.0015963962057305781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3427e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.097873845502228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3915890726014186, dt = 0.0015963962057305781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1431.00 ns (0.4%)
gen split merge : 788.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 747.00 ns (0.2%)
LB compute : 307.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: cfl dt = 0.0015963588116160053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2994e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002553147703733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3931854688071492, dt = 0.0015963588116160053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.4%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 776.00 ns (0.3%)
LB compute : 281.72 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: cfl dt = 0.0015963209087687638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3095e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.024431458012216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3947818276187651, dt = 0.0015963209087687638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1485.00 ns (0.5%)
gen split merge : 1177.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.3%)
LB compute : 307.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1998.00 ns (69.0%)
Info: cfl dt = 0.0015962825312260316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3585e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.131497394286043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.396378148527534, dt = 0.0015962825312260316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1300.00 ns (0.4%)
LB compute : 279.23 us (93.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (68.2%)
Info: cfl dt = 0.0015962437100303856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3702e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.156592856286192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39797443105876, dt = 0.0015962437100303856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.5%)
patch tree reduce : 1360.00 ns (0.5%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 273.94 us (93.1%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (69.8%)
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 | 7.3165e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.038495611566432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3995706747687904, dt = 0.001596204474820481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.1%)
patch tree reduce : 1279.00 ns (0.4%)
gen split merge : 1094.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1276.00 ns (0.4%)
LB compute : 281.35 us (93.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.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 | 7.3023e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.007004778587884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.401166879243611, dt = 0.001596164855839259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.4%)
patch tree reduce : 1365.00 ns (0.4%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 287.07 us (93.4%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.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 | 7.3450e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.100339566811027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027630440994503, dt = 0.0015961248873926767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.2%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 1142.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 301.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1919.00 ns (68.3%)
Info: cfl dt = 0.0015960846046578793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3038e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0095204687479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4043591689868429, dt = 0.0015960846046578793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 1708.00 ns (0.6%)
gen split merge : 1155.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 276.38 us (93.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.4%)
Info: cfl dt = 0.0015960440469291897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3360e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.079593622150686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4059552535915008, dt = 0.0015960440469291897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.2%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 272.52 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.8%)
Info: cfl dt = 0.001596003258617692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2988e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.997666016038112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.40755129763843, dt = 0.001596003258617692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 303.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.5%)
Info: cfl dt = 0.0015959622897416515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2185e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.821306579745661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4091473008970476, dt = 0.0015959622897416515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 1004.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 967.00 ns (0.3%)
LB compute : 304.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1940.00 ns (69.3%)
Info: cfl dt = 0.0015959211945845236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2713e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.936687657642594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107432631867893, dt = 0.0015959211945845236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.2%)
patch tree reduce : 1455.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 318.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.1%)
Info: cfl dt = 0.0015958800296107132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2772e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.949236628706116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.412339184381374, dt = 0.0015958800296107132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.5%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 274.72 us (93.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1872.00 ns (67.7%)
Info: cfl dt = 0.0015958388513965546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3417e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09002806208827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4139350644109847, dt = 0.0015958388513965546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.0%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1003.00 ns (0.3%)
LB compute : 293.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.6%)
Info: cfl dt = 0.0015957977154716536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2146e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.8112524681881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4155309032623813, dt = 0.0015957977154716536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1628.00 ns (0.5%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1105.00 ns (0.4%)
LB compute : 281.14 us (93.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (68.3%)
Info: cfl dt = 0.0015957566764063357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2532e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.895244189237081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.417126700977853, dt = 0.0015957566764063357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.1%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 310.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1945.00 ns (68.3%)
Info: cfl dt = 0.001595715788406231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2759e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.944728290298565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4187224576542594, dt = 0.001595715788406231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1381.00 ns (0.4%)
gen split merge : 826.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 323.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.6%)
Info: cfl dt = 0.0015956751055150459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4652e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35908948864526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4203181734426658, dt = 0.0015956751055150459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 314.89 us (94.4%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (69.9%)
Info: cfl dt = 0.0015956346808672387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2687e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.928139073463813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219138485481808, dt = 0.0015956346808672387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1044.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 278.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (72.0%)
Info: cfl dt = 0.0015955945659434628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2906e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.975613576152043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.423509483229048, dt = 0.0015955945659434628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.2%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 883.00 ns (0.3%)
LB compute : 298.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (66.9%)
Info: cfl dt = 0.0015955548093980298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3415e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08678159908419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4251050777949914, dt = 0.0015955548093980298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.1%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 1098.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 809.00 ns (0.2%)
LB compute : 307.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: cfl dt = 0.0015955154554980883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3499e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10474319544466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4267006326043894, dt = 0.0015955154554980883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 758.00 ns (0.2%)
LB compute : 303.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.4%)
Info: cfl dt = 0.0015954765426481805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3322e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.065645181809728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282961480598875, dt = 0.0015954765426481805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 786.00 ns (0.2%)
LB compute : 301.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.6%)
Info: cfl dt = 0.001595438102376508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2819e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95506223495899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4298916246025357, dt = 0.001595438102376508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.2%)
patch tree reduce : 1310.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 778.00 ns (0.3%)
LB compute : 279.26 us (93.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.6%)
Info: cfl dt = 0.00159540015902693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3376e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.076776020440516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4314870627049123, dt = 0.00159540015902693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.9%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 715.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1684.00 ns (0.5%)
LB compute : 329.37 us (93.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.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 | 7.3061e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.007338888276813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4330824628639394, dt = 0.0015953627298465711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 765.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 299.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1890.00 ns (68.7%)
Info: cfl dt = 0.0015953258253560752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3981e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.208501436164266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434677825593786, dt = 0.0015953258253560752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.57 us (5.9%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 297.72 us (90.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1735.00 ns (66.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 | 7.3514e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10576237534604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.436273151419142, dt = 0.0015952894515179072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 1418.00 ns (0.4%)
gen split merge : 1141.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 315.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.3%)
Info: cfl dt = 0.0015952536263584122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3266e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.051160971067578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.43786844087066, dt = 0.0015952536263584122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.79 us (5.8%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 983.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1339.00 ns (0.4%)
LB compute : 293.55 us (90.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.3%)
Info: cfl dt = 0.0015952183509550086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0948e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.542848704422061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4394636944970183, dt = 0.0015952183509550086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 305.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1886.00 ns (67.2%)
Info: cfl dt = 0.0015951836037136086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2812e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.950842929817625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4410589128479734, dt = 0.0015951836037136086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.1%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 295.18 us (94.0%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1735.00 ns (68.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.7134e+05 | 262144 | 1 | 3.905e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.706809244583262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.442654096451687, dt = 0.0015951491898046873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.1%)
patch tree reduce : 1320.00 ns (0.4%)
gen split merge : 1079.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1258.00 ns (0.4%)
LB compute : 323.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.8%)
Info: cfl dt = 0.0015951151424895874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2968e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.984492415454993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4442492456414917, dt = 0.0015951151424895874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.4%)
LB compute : 292.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.8%)
Info: cfl dt = 0.0015950815015249524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3071e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00655428877851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4458443607839813, dt = 0.0015950815015249524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 1075.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 302.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.7%)
Info: cfl dt = 0.0015950482974442359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3080e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.008233971400575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474394422855061, dt = 0.0015950482974442359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 766.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 338.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.9%)
Info: cfl dt = 0.0015950155545393634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4847e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.395022393501282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4490344905829504, dt = 0.0015950155545393634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1551.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.2%)
LB compute : 329.37 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.2%)
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.8687e+05 | 262144 | 1 | 3.817e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.045244913503597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4506295061374899, dt = 0.0015949832940181665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1649.00 ns (0.5%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 295.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1779.00 ns (67.2%)
Info: cfl dt = 0.001594951529473891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4079e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.225985603351678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.452224489431508, dt = 0.001594951529473891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.4%)
patch tree reduce : 1339.00 ns (0.5%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 274.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1819.00 ns (67.2%)
Info: cfl dt = 0.0015949202733950276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2814e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.948718966340518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.453819440960982, dt = 0.0013888923723515134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1258.00 ns (0.4%)
gen split merge : 1104.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1274.00 ns (0.4%)
LB compute : 273.56 us (93.1%)
LB move op cnt : 0
LB apply : 2.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: cfl dt = 0.001594894679573488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3342e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.988852156303544 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 352.809475441 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0012.vtk [VTK Dump][rank=0]
- took 37.32 ms, bandwidth = 1.02 GB/s
amr::Godunov: t = 1.4552083333333334, dt = 0.001594894679573488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1741.00 ns (0.5%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1137.00 ns (0.3%)
LB compute : 349.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
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.6554e+05 | 262144 | 1 | 3.939e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.576915701378923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4568032280129068, dt = 0.001594863225902596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 13.45 us (4.4%)
gen split merge : 1069.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1165.00 ns (0.4%)
LB compute : 273.71 us (90.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.8%)
Info: cfl dt = 0.0015948322735937325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5267e+05 | 262144 | 1 | 4.016e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.294883547530677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4583980912388095, dt = 0.0015948322735937325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1425.00 ns (0.5%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 291.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.9%)
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.1574e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.485745419594522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4599929235124032, dt = 0.0015948022568394885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 13.54 us (4.5%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 968.00 ns (0.3%)
LB compute : 269.28 us (89.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (72.1%)
Info: cfl dt = 0.0015947733337951413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4205e+05 | 262144 | 1 | 3.533e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.25193520127519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4615877257692427, dt = 0.0015947733337951413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1377.00 ns (0.4%)
gen split merge : 1083.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 310.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.8%)
Info: cfl dt = 0.0015947454972698458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3916e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.188320880241832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4631824991030378, dt = 0.0015947454972698458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 889.00 ns (0.3%)
LB compute : 296.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.6%)
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 | 7.3461e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08834796496394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4647772446003076, dt = 0.0015947186330669675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1175.00 ns (0.3%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 334.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.6%)
Info: cfl dt = 0.0015946925747072492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3655e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.130573476307354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4663719632333745, dt = 0.0015946925747072492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1490.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 817.00 ns (0.2%)
LB compute : 324.01 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.62 us (74.4%)
Info: cfl dt = 0.0015946671507559235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2279e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.828844719943358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4679666558080817, dt = 0.0015946671507559235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1478.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 359.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.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 | 7.3020e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.990994190350913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4695613229588376, dt = 0.0015946422183869442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1369.00 ns (0.5%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 280.23 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.3%)
Info: cfl dt = 0.001594617683602119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3485e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.092608918440373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4711559651772246, dt = 0.001594617683602119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 768.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 304.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (68.7%)
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 | 7.3470e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.089057543904723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4727505828608267, dt = 0.001594593502809023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1357.00 ns (0.4%)
gen split merge : 1161.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1167.00 ns (0.4%)
LB compute : 306.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (69.3%)
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 | 7.3861e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17441367240343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4743451763636357, dt = 0.0015945696776763277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.1%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 272.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.8%)
Info: cfl dt = 0.001594546262000383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2981e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.981497239480774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.475939746041312, dt = 0.001594546262000383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.5%)
patch tree reduce : 1230.00 ns (0.3%)
gen split merge : 909.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.2%)
LB compute : 387.57 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (73.6%)
Info: cfl dt = 0.0015945233493087347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2383e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.850263078103684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4775342923033123, dt = 0.0015945233493087347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 307.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.9%)
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 | 7.4160e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.239182682863646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.479128815652621, dt = 0.0015944988179841305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 337.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.7%)
Info: cfl dt = 0.0015944662681038058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4130e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23231586183444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4807233144706051, dt = 0.0015944662681038058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1130.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.2%)
LB compute : 314.06 us (94.3%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (67.6%)
Info: cfl dt = 0.0015944339563569486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4259e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.260133940690597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.482317780738709, dt = 0.0015944339563569486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1174.00 ns (0.3%)
gen split merge : 788.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 354.11 us (94.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (72.3%)
Info: cfl dt = 0.0015944019551024098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3725e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.142942054244326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4839122146950658, dt = 0.0015944019551024098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1164.00 ns (0.4%)
gen split merge : 1185.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 293.77 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
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 | 7.3098e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.005287614174627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4855066166501683, dt = 0.0015943703274971133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 321.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.4%)
Info: cfl dt = 0.0015943391138626044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2285e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.827025301386374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4871009869776655, dt = 0.0015943391138626044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.2%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 308.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1778.00 ns (66.8%)
Info: cfl dt = 0.0015943083267917603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4002e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.202744006178335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.488695326091528, dt = 0.0015943083267917603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 1300.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 326.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.7%)
Info: cfl dt = 0.0015942779520156326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4143e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.233170934357396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4902896344183199, dt = 0.0015942779520156326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.0%)
patch tree reduce : 1627.00 ns (0.5%)
gen split merge : 1149.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1298.00 ns (0.4%)
LB compute : 324.45 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.3%)
Info: cfl dt = 0.0015942479528685302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3987e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.198731857536686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4918839123703356, dt = 0.0015942479528685302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 293.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1980.00 ns (68.8%)
Info: cfl dt = 0.0015942182748646062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3679e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13105668955414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4934781603232041, dt = 0.0015942182748646062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.2%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 269.77 us (93.9%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.1%)
Info: cfl dt = 0.0015941888520156643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4061e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.214451860759254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4950723785980686, dt = 0.0015941888520156643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1294.00 ns (0.4%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 975.00 ns (0.3%)
LB compute : 284.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.0%)
Info: cfl dt = 0.0015941596064340587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3947e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1890239540466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4966665674500843, dt = 0.0015941596064340587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1057.00 ns (0.4%)
LB compute : 269.65 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.2%)
Info: cfl dt = 0.0015941304508293756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4326e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.271859210800873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4982607270565185, dt = 0.0015941304508293756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1228.00 ns (0.3%)
gen split merge : 889.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 349.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.7%)
Info: cfl dt = 0.0015941012931219244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3813e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15906992493558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4998548575073478, dt = 0.0015941012931219244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 1133.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 301.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1776.00 ns (66.5%)
Info: cfl dt = 0.0015940720425314117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3827e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16195320654537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014489588004698, dt = 0.0015940720425314117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1367.00 ns (0.4%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1096.00 ns (0.3%)
LB compute : 307.70 us (94.2%)
LB move op cnt : 0
LB apply : 2.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.7%)
Info: cfl dt = 0.0015940426147407986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4050e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21041155642395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5030430308430012, dt = 0.0015940426147407986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 1158.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 326.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.0%)
Info: cfl dt = 0.0015940129348716043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4221e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.24756750064438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.504637073457742, dt = 0.0015940129348716043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 984.00 ns (0.3%)
LB compute : 308.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1987.00 ns (67.2%)
Info: cfl dt = 0.001593982938212931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3979e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.194411021601884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5062310863926136, dt = 0.001593982938212931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1030.00 ns (0.3%)
LB compute : 315.15 us (94.5%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1785.00 ns (67.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 | 7.4354e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.27608160885443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5078250693308266, dt = 0.0015939525640558856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 788.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1075.00 ns (0.3%)
LB compute : 338.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (70.2%)
Info: cfl dt = 0.001593921760136384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3664e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.124733750130805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5094190218948824, dt = 0.001593921760136384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 1256.00 ns (0.4%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 317.88 us (94.4%)
LB move op cnt : 0
LB apply : 2.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (70.3%)
Info: cfl dt = 0.0015938904830636994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4276e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.258488705445476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5110129436550188, dt = 0.0015938904830636994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.3%)
patch tree reduce : 1257.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 272.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1847.00 ns (69.5%)
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 | 7.3957e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.188283905238624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5126068341380825, dt = 0.0015938586957651647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 1154.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.5%)
LB compute : 273.78 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (67.4%)
Info: cfl dt = 0.0015938263641188223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3405e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.067144285124915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5142006928338476, dt = 0.0015938263641188223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 271.10 us (93.8%)
LB move op cnt : 0
LB apply : 2.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.9%)
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.6978e+05 | 262144 | 1 | 3.914e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.660161108889032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5157945191979665, dt = 0.0015937934541244184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.5%)
patch tree reduce : 1274.00 ns (0.3%)
gen split merge : 1054.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1279.00 ns (0.3%)
LB compute : 480.05 us (96.0%)
LB move op cnt : 0
LB apply : 3.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (66.5%)
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 | 7.4166e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.232983169111435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173883126520908, dt = 0.0015937599303736368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1166.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 307.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1905.00 ns (67.5%)
Info: cfl dt = 0.0015937257898329762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3775e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.147152927940542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5189820725824645, dt = 0.0015937257898329762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1364.00 ns (0.4%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 291.59 us (93.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.4%)
Info: cfl dt = 0.0015936910435340227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4127e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.223833851773072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5205757983722976, dt = 0.0015936910435340227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 1089.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 303.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.0%)
Info: cfl dt = 0.001593655636733416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4215e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.24265610282374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5221694894158317, dt = 0.001593655636733416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 293.21 us (93.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1987.00 ns (68.9%)
Info: cfl dt = 0.0015936194964937176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4314e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.264106204793784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5237631450525653, dt = 0.0015936194964937176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1421.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1158.00 ns (0.3%)
LB compute : 324.06 us (94.7%)
LB move op cnt : 0
LB apply : 2.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (69.0%)
Info: cfl dt = 0.0015935825462048588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3818e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.155147928583816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5253567645490589, dt = 0.0015935825462048588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1360.00 ns (0.4%)
LB compute : 306.32 us (94.2%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.9%)
Info: cfl dt = 0.0015935447174811406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4336e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26815351635718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269503470952637, dt = 0.0015935447174811406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.5%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 1129.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1308.00 ns (0.5%)
LB compute : 268.54 us (93.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.8%)
Info: cfl dt = 0.0015935059571496838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3755e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.140523011006195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5285438918127447, dt = 0.0015935059571496838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.0%)
patch tree reduce : 1389.00 ns (0.4%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 296.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.6%)
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.7340e+05 | 262144 | 1 | 3.893e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.736226376225002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5301373977698944, dt = 0.0015934662295274092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1317.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 322.57 us (94.7%)
LB move op cnt : 0
LB apply : 2.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.6%)
Info: cfl dt = 0.001593425514978418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5178e+05 | 262144 | 1 | 3.487e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.4511154529104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5317308639994218, dt = 0.001593425514978418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1546.00 ns (0.5%)
gen split merge : 1145.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 321.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (71.4%)
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.5357e+05 | 262144 | 1 | 4.011e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.30171943774533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5333242895144001, dt = 0.0015933838059443558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1251.00 ns (0.4%)
LB compute : 330.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.4%)
Info: cfl dt = 0.0015933411021386479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5942e+05 | 262144 | 1 | 3.452e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.61740873879781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5349176733203445, dt = 0.0015933411021386479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1479.00 ns (0.4%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.2%)
LB compute : 332.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (74.2%)
Info: cfl dt = 0.0015932974064978222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4625e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32891419643548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365110144224832, dt = 0.0015932974064978222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1647.00 ns (0.5%)
gen split merge : 1054.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 307.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.7%)
Info: cfl dt = 0.0015932527229285513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5535e+05 | 262144 | 1 | 3.470e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.52752729777367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.538104311828981, dt = 0.0015932527229285513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1294.00 ns (0.4%)
gen split merge : 753.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 967.00 ns (0.3%)
LB compute : 337.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (73.2%)
Info: cfl dt = 0.0015932070556863693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3290e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035740515872625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5396975645519095, dt = 0.0015932070556863693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 346.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.8%)
Info: cfl dt = 0.0015931604104602935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4920e+05 | 262144 | 1 | 3.499e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.39199543449867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5412907716075959, dt = 0.0015931604104602935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.8%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1127.00 ns (0.3%)
LB compute : 349.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (74.3%)
Info: cfl dt = 0.00159311279611975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3703e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.125281410607215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.542883932018056, dt = 0.00159311279611975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 308.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (75.4%)
Info: cfl dt = 0.0015930642259050715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4109e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.213628229432256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5444770448141758, dt = 0.0015930642259050715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.4%)
LB compute : 307.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.5%)
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.7538e+05 | 262144 | 1 | 3.881e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.775569995963515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5460701090400808, dt = 0.0015930147174948567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1138.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 308.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1719.00 ns (65.4%)
Info: cfl dt = 0.0015929642923424114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4368e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.269380017697582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5476631237575758, dt = 0.0015929642923424114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 760.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.2%)
LB compute : 330.60 us (95.0%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (68.9%)
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 | 7.4150e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.221111423330516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5492560880499182, dt = 0.0015929129749010188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.9%)
patch tree reduce : 1177.00 ns (0.3%)
gen split merge : 1099.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 342.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (74.4%)
Info: cfl dt = 0.0015928607920823153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5446e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.504015781115356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5508490010248193, dt = 0.0015928607920823153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1334.00 ns (0.4%)
gen split merge : 1200.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.2%)
LB compute : 357.01 us (94.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.7%)
Info: cfl dt = 0.0015928077733925146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4024e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.192516249408722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524418618169016, dt = 0.0015928077733925146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1170.00 ns (0.3%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 329.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.1%)
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.7133e+05 | 262144 | 1 | 3.905e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.684625309910894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.554034669590294, dt = 0.0015927539506330663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.3%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 302.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1886.00 ns (68.7%)
Info: cfl dt = 0.001592699358407336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4564e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.309429092406482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.555627423540927, dt = 0.001592699358407336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1344.00 ns (0.4%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 986.00 ns (0.3%)
LB compute : 288.75 us (94.0%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.5%)
Info: cfl dt = 0.0015926440393029268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3970e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17895295757684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5572201228993345, dt = 0.0015926440393029268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1387.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 292.99 us (94.2%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (76.0%)
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 | 7.3719e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.123515570963185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5588127669386376, dt = 0.0015925880433467871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1398.00 ns (0.5%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.3%)
LB compute : 272.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
Info: cfl dt = 0.0015925314258052657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7559e+05 | 262144 | 1 | 3.880e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.775682112009887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5604053549819843, dt = 0.0015925314258052657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1341.00 ns (0.4%)
gen split merge : 1162.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 289.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.8%)
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 | 7.4067e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.198468995731936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5619978864077895, dt = 0.0015924742472393622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 1637.00 ns (0.5%)
gen split merge : 1103.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.3%)
LB compute : 308.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (75.7%)
Info: cfl dt = 0.0015924165729947048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1124e+05 | 262144 | 1 | 3.686e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.55422721342716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5635903606550288, dt = 0.0015924165729947048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.2%)
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.6614e+05 | 262144 | 1 | 3.935e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.567491040494263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5651827772280236, dt = 0.001592358471339297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1579.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 312.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.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 | 7.3233e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01441366336749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5667751356993629, dt = 0.0015923000107649673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.3%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1045.00 ns (0.4%)
LB compute : 268.26 us (93.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1997.00 ns (68.5%)
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.8703e+05 | 262144 | 1 | 3.816e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.02325227100112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5683674357101278, dt = 0.0015922412571130564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.2%)
patch tree reduce : 1246.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1334.00 ns (0.4%)
LB compute : 312.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1877.00 ns (66.7%)
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 | 7.4054e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.19270621603978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5699596769672408, dt = 0.0015921822709948025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.4%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1429.00 ns (0.5%)
LB compute : 272.80 us (93.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1991.00 ns (69.7%)
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.9794e+05 | 262144 | 1 | 3.756e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.260570734590178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5715518592382356, dt = 0.0015921231059621544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1506.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 279.87 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1910.00 ns (68.1%)
Info: cfl dt = 0.0015920638077376746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2148e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.774844142952896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5731439823441977, dt = 0.0015920638077376746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.1%)
patch tree reduce : 1335.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1058.00 ns (0.3%)
LB compute : 286.58 us (93.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.7%)
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.7573e+05 | 262144 | 1 | 3.879e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.774039444902327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5747360461519353, dt = 0.0015920044140318014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (2.7%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 272.41 us (93.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1806.00 ns (66.3%)
Info: cfl dt = 0.0015919449547474058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4130e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20693053594986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5763280505659671, dt = 0.0015919449547474058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.3%)
patch tree reduce : 1639.00 ns (0.6%)
gen split merge : 1148.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 268.61 us (93.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1955.00 ns (69.0%)
Info: cfl dt = 0.0015918854525264268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2546e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.85997284303798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5779199955207146, dt = 0.0015918854525264268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1317.00 ns (0.4%)
LB compute : 304.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.1%)
Info: cfl dt = 0.0015918259237131622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3065e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972813083783251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5795118809732411, dt = 0.0015918259237131622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 290.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.7%)
Info: cfl dt = 0.001591766379735805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3368e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03856594594244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5811037068969542, dt = 0.001591766379735805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 278.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (68.6%)
Info: cfl dt = 0.0015917068287792584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0900e+05 | 262144 | 1 | 4.304e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.312488491224126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.58269547327669, dt = 0.0015917068287792584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1547.00 ns (0.5%)
gen split merge : 1089.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 275.85 us (93.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.4%)
Info: cfl dt = 0.0015916472775084412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3189e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99810767990729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5842871801054692, dt = 0.0015916472775084412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 835.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 290.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (69.7%)
Info: cfl dt = 0.001591587732813977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3551e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07674515217068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5858788273829776, dt = 0.001591587732813977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (2.5%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 287.23 us (93.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1955.00 ns (68.0%)
Info: cfl dt = 0.0015915282082583494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1852e+05 | 262144 | 1 | 3.648e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.704886109480428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5874704151157915, dt = 2.958488420845562e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1200.00 ns (0.4%)
LB compute : 304.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.8%)
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.6528e+05 | 262144 | 1 | 3.940e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2702959984230571 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 383.752066182 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0013.vtk [VTK Dump][rank=0]
- took 36.59 ms, bandwidth = 1.04 GB/s
amr::Godunov: t = 1.5875, dt = 0.0015915268568731417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 1747.00 ns (0.5%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 309.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1982.00 ns (69.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 | 7.1018e+05 | 262144 | 1 | 3.691e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.52180386190102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.589091526856873, dt = 0.0015914671761291658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1349.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1248.00 ns (0.4%)
LB compute : 291.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (72.1%)
Info: cfl dt = 0.001591407681628507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2034e+05 | 262144 | 1 | 3.639e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.743292206511727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906829940330023, dt = 0.001591407681628507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 968.00 ns (0.3%)
LB compute : 277.80 us (93.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.8%)
Info: cfl dt = 0.001591348311316017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5695e+05 | 262144 | 1 | 3.463e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.542968517403708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5922744017146309, dt = 0.001591348311316017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 790.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1128.00 ns (0.3%)
LB compute : 331.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (72.1%)
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 | 7.4486e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.27796964261584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938657500259468, dt = 0.0015912890731586962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1788.00 ns (0.5%)
gen split merge : 819.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 319.40 us (94.1%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (73.6%)
Info: cfl dt = 0.001591229978032674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2793e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.907578351608723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5954570390991054, dt = 0.001591229978032674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 800.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1204.00 ns (0.4%)
LB compute : 300.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (68.9%)
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 | 7.3195e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.994655148948734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5970482690771381, dt = 0.0015911710421292037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 1065.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 324.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (72.5%)
Info: cfl dt = 0.0015911122806988311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1282e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.576147208258563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5986394401192674, dt = 0.0015911122806988311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1685.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.3%)
LB compute : 298.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.4%)
Info: cfl dt = 0.0015910537040566418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3397e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.037732463172542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6002305523999663, dt = 0.0015910537040566418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1359.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1126.00 ns (0.3%)
LB compute : 317.05 us (94.4%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (66.3%)
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.6746e+05 | 262144 | 1 | 3.928e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.583769792886242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.601821606104023, dt = 0.0015909953168694877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.1%)
patch tree reduce : 1451.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 334.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1840.00 ns (67.2%)
Info: cfl dt = 0.0015909371202782018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2868e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9210353149015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6034126014208925, dt = 0.0015909371202782018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.2%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 850.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1274.00 ns (0.4%)
LB compute : 319.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (70.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 | 7.3362e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.028262935686243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6050035385411707, dt = 0.0015908791155161534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1177.00 ns (0.3%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1007.00 ns (0.3%)
LB compute : 317.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.5%)
Info: cfl dt = 0.0015908213075947343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3443e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.045428991975314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6065944176566869, dt = 0.0015908213075947343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 328.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (72.9%)
Info: cfl dt = 0.0015907637080012852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8283e+05 | 262144 | 1 | 3.839e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.917547762447148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6081852389642817, dt = 0.0015907637080012852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 295.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
Info: cfl dt = 0.0015907063358996825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3709e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.102428968364606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.609776002672283, dt = 0.0015907063358996825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1575.00 ns (0.5%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 301.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: cfl dt = 0.0015906492177947705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2964e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.938903976173224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6113667090081827, dt = 0.0015906492177947705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1185.00 ns (0.4%)
LB compute : 306.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1757.00 ns (67.8%)
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 | 7.3009e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.948312685187304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6129573582259775, dt = 0.001590592385958255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 1095.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 278.83 us (93.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.4%)
Info: cfl dt = 0.0015905358760676415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3299e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.011021718293478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145479506119358, dt = 0.0015905358760676415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 280.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: cfl dt = 0.001590479724650708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2840e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.910321676155926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6161384864880035, dt = 0.001590479724650708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 1201.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 321.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.8%)
Info: cfl dt = 0.001590423966663734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3110e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96856504960517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6177289662126542, dt = 0.001590423966663734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1541.00 ns (0.5%)
gen split merge : 1121.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 304.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
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.6294e+05 | 262144 | 1 | 3.954e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.479464612195242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.619319390179318, dt = 0.0015903686347135443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 815.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 307.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (68.2%)
Info: cfl dt = 0.0015903137557810444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3816e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12171748439299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6209097588140315, dt = 0.0015903137557810444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 998.00 ns (0.3%)
LB compute : 314.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.5%)
Info: cfl dt = 0.0015902593499170926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3069e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95800138822206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6225000725698127, dt = 0.0015902593499170926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1195.00 ns (0.4%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 976.00 ns (0.3%)
LB compute : 291.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.5%)
Info: cfl dt = 0.0015902054314758324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4414e+05 | 262144 | 1 | 4.070e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.067374110621511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6240903319197297, dt = 0.0015902054314758324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 278.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (66.9%)
Info: cfl dt = 0.0015901520100239084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3962e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151978180336858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6256805373512055, dt = 0.0015901520100239084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1761.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 298.69 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (73.4%)
Info: cfl dt = 0.0015900990913423343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2976e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.935965512628348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6272706893612294, dt = 0.0015900990913423343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 768.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 277.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.9%)
Info: cfl dt = 0.001590046678478888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3174e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.978785717809744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6288607884525719, dt = 0.001590046678478888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.1%)
patch tree reduce : 1665.00 ns (0.5%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1301.00 ns (0.4%)
LB compute : 315.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1878.00 ns (68.1%)
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.9385e+05 | 262144 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.150816825596635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6304508351310507, dt = 0.001589994772302053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1004.00 ns (0.3%)
LB compute : 295.53 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (68.7%)
Info: cfl dt = 0.0015899433722952098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1064e+05 | 262144 | 1 | 3.689e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.51691323699573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6320408299033529, dt = 0.0015899433722952098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.1%)
patch tree reduce : 1598.00 ns (0.5%)
gen split merge : 1121.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1257.00 ns (0.4%)
LB compute : 293.84 us (93.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.8%)
Info: cfl dt = 0.0015898925694677617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3148e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.971638884776018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.633630773275648, dt = 0.0015898925694677617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 767.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 322.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (71.6%)
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.1783e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.489715587728682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6352206658451158, dt = 0.0015898423063823387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1366.00 ns (0.4%)
gen split merge : 1196.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.2%)
LB compute : 334.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (71.9%)
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.6836e+05 | 262144 | 1 | 3.922e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.592424648838827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636810508151498, dt = 0.001589792548670384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1128.00 ns (0.3%)
LB compute : 307.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (68.2%)
Info: cfl dt = 0.0015897432723103353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3260e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.994406814201742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384003007001684, dt = 0.0015897432723103353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1780.00 ns (0.6%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 278.73 us (93.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.5%)
Info: cfl dt = 0.0015896944572158264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2969e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.930401396811893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6399900439724788, dt = 0.0015896944572158264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 286.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.9%)
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.2431e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.629486226786083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6415797384296946, dt = 0.0015896461547985317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 14.45 us (4.7%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1280.00 ns (0.4%)
LB compute : 276.14 us (89.6%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.8%)
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.4843e+05 | 262144 | 1 | 4.043e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.155451153997095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6431693845844932, dt = 0.0015895984085979426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 271.02 us (93.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.4%)
Info: cfl dt = 0.001589551209594974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2841e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.900993561492692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644758982993091, dt = 0.001589551209594974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (0.7%)
patch tree reduce : 1238.00 ns (0.1%)
gen split merge : 769.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.1%)
LB compute : 881.35 us (97.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.8%)
Info: cfl dt = 0.0015895045301006561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2590e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.662949422208053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.646348534202686, dt = 0.0015895045301006561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1602.00 ns (0.5%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 323.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.5%)
Info: cfl dt = 0.0015894583365969814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3180e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.974152811166546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6479380387327867, dt = 0.0015894583365969814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 308.14 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.5%)
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.8848e+05 | 262144 | 1 | 3.808e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.028053645115742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6495274970693836, dt = 0.0015894125999430244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 296.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.1%)
Info: cfl dt = 0.0015893672934366332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2337e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.789290592290003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511169096693266, dt = 0.0015893672934366332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 284.78 us (94.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.9%)
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.7564e+05 | 262144 | 1 | 3.880e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.746861270281496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6527062769627632, dt = 0.001589322388745958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.0%)
patch tree reduce : 1351.00 ns (0.4%)
gen split merge : 1167.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 308.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.1%)
Info: cfl dt = 0.0015892778535022446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3863e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.121325280132986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6542955993515092, dt = 0.0015892778535022446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1305.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1181.00 ns (0.4%)
LB compute : 290.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.3%)
Info: cfl dt = 0.001589233649414269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6713e+05 | 262144 | 1 | 3.929e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.560407088664862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6558848772050114, dt = 0.001589233649414269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1277.00 ns (0.4%)
LB compute : 305.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (72.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.7181e+05 | 262144 | 1 | 3.902e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662078884014209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6574741108544258, dt = 0.00158918973264957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.4%)
patch tree reduce : 1640.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 281.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.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.8661e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.984722948433673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6590633005870754, dt = 0.001589146053909854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.1%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1083.00 ns (0.4%)
LB compute : 288.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.5%)
Info: cfl dt = 0.0015891025585169744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3013e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.933978546145816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6606524466409853, dt = 0.0015891025585169744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.1%)
patch tree reduce : 1639.00 ns (0.5%)
gen split merge : 985.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 296.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.6%)
Info: cfl dt = 0.001589059183607506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3438e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02634756775099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6622415491995024, dt = 0.001589059183607506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 1257.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 275.21 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (69.6%)
Info: cfl dt = 0.0015890158599363505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3369e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.010796000257326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638306083831098, dt = 0.0015890158599363505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1578.00 ns (0.5%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 284.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.6%)
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.8487e+05 | 262144 | 1 | 3.828e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.945167442154013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6654196242430461, dt = 0.0015889725390866207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1291.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1017.00 ns (0.3%)
LB compute : 285.71 us (94.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.1%)
Info: cfl dt = 0.0015889292251410776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4698e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29995723598473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6670085967821326, dt = 0.0015889292251410776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.4%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1295.00 ns (0.4%)
LB compute : 269.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1812.00 ns (66.4%)
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.4789e+05 | 262144 | 1 | 4.046e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.137324577977353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6685975260072736, dt = 0.0015888859185134367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1248.00 ns (0.4%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 294.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (67.9%)
Info: cfl dt = 0.0015888425827464685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3179e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96761452040847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.670186411925787, dt = 0.0015888425827464685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1433.00 ns (0.5%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 296.69 us (94.0%)
LB move op cnt : 0
LB apply : 2.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.0%)
Info: cfl dt = 0.0015887991583559784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2781e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.880400578807736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6717752545085334, dt = 0.0015887991583559784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.0%)
patch tree reduce : 1040.00 ns (0.3%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 984.00 ns (0.3%)
LB compute : 292.88 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (68.2%)
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.2865e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.716303565889548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6733640536668895, dt = 0.0015887555663731277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1156.00 ns (0.4%)
gen split merge : 1105.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 290.45 us (93.6%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (68.4%)
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.4889e+05 | 262144 | 1 | 4.040e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.157713491818175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6749528092332626, dt = 0.0015887117126455186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1117.00 ns (0.4%)
gen split merge : 1054.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1284.00 ns (0.4%)
LB compute : 269.62 us (93.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1960.00 ns (65.1%)
Info: cfl dt = 0.0015886674935914735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0751e+05 | 262144 | 1 | 3.705e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.43620941299515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676541520945908, dt = 0.0015886674935914735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.0%)
patch tree reduce : 1630.00 ns (0.5%)
gen split merge : 773.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 297.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
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 | 5.8215e+05 | 262144 | 1 | 4.503e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.700885872180782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6781301884394995, dt = 0.0015886228034629993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.5%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.2%)
LB compute : 448.21 us (95.8%)
LB move op cnt : 0
LB apply : 2.93 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1745.00 ns (66.4%)
Info: cfl dt = 0.0015885775498870381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2815e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.88551631937245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797188112429624, dt = 0.0015885775498870381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.0%)
patch tree reduce : 1077.00 ns (0.3%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 304.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (67.4%)
Info: cfl dt = 0.0015885316484320886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1489e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.595830298622628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6813073887928494, dt = 0.0015885316484320886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1128.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 286.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1995.00 ns (71.0%)
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.2124e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55243059575057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828959204412814, dt = 0.0015884850222556194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 1084.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 296.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
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.2552e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.645423670717742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.684484405463537, dt = 0.0015884376027602003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 854.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1236.00 ns (0.4%)
LB compute : 326.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1819.00 ns (68.0%)
Info: cfl dt = 0.001588389329976528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2692e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.856968271029611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6860728430662972, dt = 0.001588389329976528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.2%)
patch tree reduce : 1295.00 ns (0.5%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 264.35 us (93.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1902.00 ns (67.6%)
Info: cfl dt = 0.0015883401523641154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0535e+05 | 262144 | 1 | 3.717e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.385859978632437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876612323962739, dt = 0.0015883401523641154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 305.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1802.00 ns (66.1%)
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.5463e+05 | 262144 | 1 | 4.004e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.27914440900432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.689249572548638, dt = 0.0015882900260828807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1598.00 ns (0.4%)
gen split merge : 1195.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1238.00 ns (0.3%)
LB compute : 341.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (74.5%)
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.3430e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.835323697954971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.690837862574721, dt = 0.0015882389505504112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 960.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1216.00 ns (0.4%)
LB compute : 300.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.8%)
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 | 7.3239e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.974301688215741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6924261015252713, dt = 0.0015881869035424033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 283.59 us (93.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (73.0%)
Info: cfl dt = 0.0015881338193154998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3159e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.956351333226818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6940142884288136, dt = 0.0015881338193154998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 312.13 us (94.3%)
LB move op cnt : 0
LB apply : 2.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1779.00 ns (66.8%)
Info: cfl dt = 0.0015880796266822409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3226e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.970321095893057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6956024222481292, dt = 0.0015880796266822409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.3%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1305.00 ns (0.4%)
LB compute : 296.03 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.0%)
Info: cfl dt = 0.0015880242698695197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3744e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082766960210833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6971905018748115, dt = 0.0015880242698695197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 277.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (68.6%)
Info: cfl dt = 0.0015879677439613845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3399e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.006924881446665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.698778526144681, dt = 0.0015879677439613845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.1%)
patch tree reduce : 1409.00 ns (0.4%)
gen split merge : 1096.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 308.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: cfl dt = 0.0015879099912156727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4065e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151664744043224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7003664938886425, dt = 0.0015879099912156727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1531.00 ns (0.5%)
gen split merge : 795.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 281.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1799.00 ns (67.8%)
Info: cfl dt = 0.0015878509208028424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3880e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.110736683029806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7019544038798582, dt = 0.0015878509208028424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 279.10 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.6%)
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.8944e+05 | 262144 | 1 | 3.802e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.033888758535467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7035422548006611, dt = 0.0015877905164214153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1566.00 ns (0.5%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 314.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.6%)
Info: cfl dt = 0.0015877288137113583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4513e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.247608482976307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7051300453170826, dt = 0.0015877288137113583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1558.00 ns (0.5%)
gen split merge : 1146.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.4%)
LB compute : 319.59 us (94.0%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.7%)
Info: cfl dt = 0.0015876658746308444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2628e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.835817167151104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.706717774130794, dt = 0.0015876658746308444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.1%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 280.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.8%)
Info: cfl dt = 0.0015876017664143858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3027e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.922265288831875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7083054400054247, dt = 0.0015876017664143858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1630.00 ns (0.5%)
gen split merge : 1100.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 279.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1971.00 ns (70.9%)
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 | 5.8162e+05 | 262144 | 1 | 4.507e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.680680929665183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7098930417718392, dt = 0.0015875365483246037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (0.4%)
patch tree reduce : 1226.00 ns (0.1%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 1586.92 us (98.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (73.9%)
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 | 5.3122e+05 | 262144 | 1 | 4.935e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.5814611148022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7114805783201639, dt = 0.001587470266014295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 1043.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 312.82 us (94.1%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1928.00 ns (68.0%)
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 | 5.7814e+05 | 262144 | 1 | 4.534e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.603720183842258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7130680485861782, dt = 0.001587402952191479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1340.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.3%)
LB compute : 306.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.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.4455e+05 | 262144 | 1 | 4.067e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.050864065505262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7146554515383696, dt = 0.0015873346302292478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.3%)
patch tree reduce : 1430.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 855.00 ns (0.3%)
LB compute : 307.92 us (93.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1925.00 ns (70.7%)
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.4220e+05 | 262144 | 1 | 4.082e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.99924878507189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.716242786168599, dt = 0.0015872653095774577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.5%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 274.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.7%)
Info: cfl dt = 0.0015871949758724556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4279e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.19106193226699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7178300514781764, dt = 0.0015871949758724556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.1%)
patch tree reduce : 1330.00 ns (0.4%)
gen split merge : 1159.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 777.00 ns (0.2%)
LB compute : 319.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.7%)
Info: cfl dt = 0.00158712360405875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2615e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.827762909384337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.719417246454049, dt = 0.00037442021261768765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1467.00 ns (0.5%)
gen split merge : 757.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 755.00 ns (0.3%)
LB compute : 270.05 us (93.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.4%)
Info: cfl dt = 0.0015871063022382713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3978e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8038381834727195 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 415.883965481 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0014.vtk [VTK Dump][rank=0]
- took 39.13 ms, bandwidth = 996.72 MB/s
amr::Godunov: t = 1.7197916666666666, dt = 0.0015871063022382713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.3%)
patch tree reduce : 1676.00 ns (0.5%)
gen split merge : 1127.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 289.48 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
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 | 7.3014e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.913863313559354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721378772968905, dt = 0.001587031072596967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.0%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 1131.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1238.00 ns (0.4%)
LB compute : 328.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.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 | 7.5486e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.45181194679272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.722965804041502, dt = 0.0015869557622058262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 280.25 us (93.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.6%)
Info: cfl dt = 0.0015868800335040335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4980e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.340787533678853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7245527598037078, dt = 0.0015868800335040335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.3%)
LB compute : 274.75 us (93.8%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.6%)
Info: cfl dt = 0.0015868038001032457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4523e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.240370354759296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7261396398372117, dt = 0.0015868038001032457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.4%)
patch tree reduce : 1591.00 ns (0.5%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 775.00 ns (0.2%)
LB compute : 299.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1811.00 ns (68.3%)
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 | 7.0065e+05 | 262144 | 1 | 3.741e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.268126506545954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727726443637315, dt = 0.0015867270964703584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 326.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (69.0%)
Info: cfl dt = 0.0015866501331849698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3012e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.909505354057085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7293131707337854, dt = 0.0015866501331849698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 839.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 317.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (69.0%)
Info: cfl dt = 0.0015865731387405381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3353e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98313170905105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7308998208669704, dt = 0.0015865731387405381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1237.00 ns (0.4%)
gen split merge : 788.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 321.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.1%)
Info: cfl dt = 0.001586496117929906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3925e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.106987574220977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.732486394005711, dt = 0.001586496117929906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.1%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 316.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: cfl dt = 0.0015864189578782282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9279e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.093931223577624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7340728901236409, dt = 0.0015864189578782282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 1201.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1249.00 ns (0.4%)
LB compute : 318.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.8%)
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.8024e+05 | 262144 | 1 | 3.854e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.819917896153214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.735659309081519, dt = 0.0015863414688122275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1550.00 ns (0.5%)
gen split merge : 764.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 945.00 ns (0.3%)
LB compute : 303.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (69.0%)
Info: cfl dt = 0.0015862634333217735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3833e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.084553710969324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7372456505503313, dt = 0.0015862634333217735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 318.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.2%)
Info: cfl dt = 0.0015861846534949867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2715e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.840237513392927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.738831913983653, dt = 0.0015861846534949867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1149.00 ns (0.4%)
gen split merge : 790.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 306.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.4%)
Info: cfl dt = 0.001586104986777074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3778e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07090309216844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740418098637148, dt = 0.001586104986777074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1364.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 311.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (69.6%)
Info: cfl dt = 0.0015860243530605735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2794e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.855883580459015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7420042036239252, dt = 0.0015860243530605735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 300.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.7%)
Info: cfl dt = 0.0015859427393698478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3755e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06445682456979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7435902279769857, dt = 0.0015859427393698478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 1221.00 ns (0.4%)
gen split merge : 1164.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1261.00 ns (0.4%)
LB compute : 310.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1887.00 ns (67.6%)
Info: cfl dt = 0.0015858602106070831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4075e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.133227444038663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7451761707163556, dt = 0.0015858602106070831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1319.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 305.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.0%)
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.9479e+05 | 262144 | 1 | 3.773e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.131487316944769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7467620309269627, dt = 0.001585776891122271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1529.00 ns (0.5%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 770.00 ns (0.2%)
LB compute : 303.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1768.00 ns (66.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.4253e+05 | 262144 | 1 | 4.080e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.992600300673852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.748347807818085, dt = 0.0015856929304162157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 1126.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1145.00 ns (0.4%)
LB compute : 273.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (67.3%)
Info: cfl dt = 0.0015856084919782074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3690e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04677477396803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.749933500748501, dt = 0.0015856084919782074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1560.00 ns (0.5%)
gen split merge : 1154.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 282.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (73.5%)
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 | 7.3893e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09014667444049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7515191092404794, dt = 0.0015855237061495361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1710.00 ns (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1099.00 ns (0.4%)
LB compute : 271.39 us (93.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.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 | 7.3647e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035686102686018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7531046329466289, dt = 0.0015854386913996905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.22 us (2.9%)
patch tree reduce : 1699.00 ns (0.5%)
gen split merge : 827.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1099.00 ns (0.3%)
LB compute : 323.39 us (93.1%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (69.9%)
Info: cfl dt = 0.0015853535555037635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3314e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.962367497064387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7546900716380285, dt = 0.0015853535555037635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1308.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 272.87 us (93.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.1%)
Info: cfl dt = 0.0015852683860852947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3970e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.104365430585144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7562754251935322, dt = 0.0015852683860852947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 306.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.8%)
Info: cfl dt = 0.0015851832239474934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3639e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03136955039321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7578606935796175, dt = 0.0015851832239474934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1261.00 ns (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 316.79 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.13 us (71.2%)
Info: cfl dt = 0.0015850980373658668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3001e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.891617743219353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.759445876803565, dt = 0.0015850980373658668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1397.00 ns (0.5%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 808.00 ns (0.3%)
LB compute : 277.44 us (93.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (68.2%)
Info: cfl dt = 0.0015850128270553994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3810e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06697804262859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.761030974840931, dt = 0.0015850128270553994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.3%)
patch tree reduce : 1686.00 ns (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 300.15 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.7%)
Info: cfl dt = 0.0015849275712205297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4579e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23342745022326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7626159876679863, dt = 0.0015849275712205297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.0%)
patch tree reduce : 1155.00 ns (0.3%)
gen split merge : 1078.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1208.00 ns (0.4%)
LB compute : 312.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.7%)
Info: cfl dt = 0.0015848422367242003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3403e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.976726900085142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7642009152392069, dt = 0.0015848422367242003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1248.00 ns (0.4%)
gen split merge : 854.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 330.03 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (67.8%)
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.9092e+05 | 262144 | 1 | 3.794e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.037471971489742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.765785757475931, dt = 0.0015847567907436957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 1227.00 ns (0.4%)
gen split merge : 775.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 965.00 ns (0.3%)
LB compute : 270.28 us (93.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.0%)
Info: cfl dt = 0.0015846712105739085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5103e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.344969904488078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7673705142666747, dt = 0.0015846712105739085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.2%)
LB compute : 329.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.8%)
Info: cfl dt = 0.0015845854893256652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5398e+05 | 262144 | 1 | 3.477e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.408306495730933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7689551854772485, dt = 0.0015845854893256652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.1%)
patch tree reduce : 1336.00 ns (0.4%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 322.72 us (94.4%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.8%)
Info: cfl dt = 0.0015844996399188992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2962e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.877273636191626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7705397709665742, dt = 0.0015844996399188992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 274.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.4%)
Info: cfl dt = 0.0015844136947143778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3513e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.99638278888889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.772124270606493, dt = 0.0015844136947143778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1103.00 ns (0.3%)
gen split merge : 739.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.2%)
LB compute : 309.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.2%)
Info: cfl dt = 0.001584327701612378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4058e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.113959104858978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7737086843012073, dt = 0.001584327701612378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1436.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 726.00 ns (0.2%)
LB compute : 316.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.1%)
Info: cfl dt = 0.0015842417181715753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3662e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02688830516664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7752930120028196, dt = 0.0015842417181715753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 293.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.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 | 7.3743e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.043783375350753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7768772537209911, dt = 0.0015841558057555236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 990.00 ns (0.3%)
LB compute : 275.46 us (93.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.8%)
Info: cfl dt = 0.0015840700245957108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1587e+05 | 262144 | 1 | 3.662e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.573754160337623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7784614095267466, dt = 0.0015840700245957108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1168.00 ns (0.4%)
gen split merge : 1114.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 292.47 us (94.1%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (68.1%)
Info: cfl dt = 0.001583984429093736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6032e+05 | 262144 | 1 | 3.970e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.364580329831687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7800454795513423, dt = 0.001583984429093736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 713.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 774.00 ns (0.2%)
LB compute : 301.96 us (94.4%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1952.00 ns (69.0%)
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.6320e+05 | 262144 | 1 | 3.953e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.426435656686401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.781629463980436, dt = 0.0015838990665825478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.4%)
patch tree reduce : 1207.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 273.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.5%)
Info: cfl dt = 0.0015838139740259752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3341e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.952761328296297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7832133630470186, dt = 0.0015838139740259752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1177.00 ns (0.3%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 321.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (74.1%)
Info: cfl dt = 0.001583729182867976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5300e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.378115564651186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7847971770210447, dt = 0.001583729182867976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.4%)
patch tree reduce : 1194.00 ns (0.4%)
gen split merge : 734.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 276.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1869.00 ns (66.9%)
Info: cfl dt = 0.0015836447219619387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4902e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2905624287665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7863809062039127, dt = 0.0015836447219619387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 888.00 ns (0.3%)
LB compute : 292.08 us (94.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.7%)
Info: cfl dt = 0.0015835606193269412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3375e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95752891532014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7879645509258746, dt = 0.0015835606193269412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.2%)
patch tree reduce : 1349.00 ns (0.4%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 290.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.0%)
Info: cfl dt = 0.0015834769000961058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3000e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.875174492421582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895481115452014, dt = 0.0015834769000961058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1510.00 ns (0.5%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 301.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.9%)
Info: cfl dt = 0.0015833935857472543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5912e+05 | 262144 | 1 | 3.977e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.33305822058976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7911315884452976, dt = 0.0015833935857472543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.3%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 306.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (72.8%)
Info: cfl dt = 0.0015833106959922782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3296e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.937954831133743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7927149820310448, dt = 0.0015833106959922782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1388.00 ns (0.5%)
gen split merge : 1151.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 274.88 us (93.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (72.6%)
Info: cfl dt = 0.0015832282524374458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4024e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.095366925232742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7942982927270372, dt = 0.0015832282524374458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 312.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (73.0%)
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.9471e+05 | 262144 | 1 | 3.773e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.10457842466166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7958815209794747, dt = 0.0015831462816845606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1548.00 ns (0.5%)
gen split merge : 1148.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 723.00 ns (0.2%)
LB compute : 284.85 us (93.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
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.1543e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.380127840122222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974646672611594, dt = 0.0015830648375315833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.8%)
patch tree reduce : 1147.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.2%)
LB compute : 348.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.9%)
Info: cfl dt = 0.00158298398380343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2994e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.868893157189056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.799047732098691, dt = 0.00158298398380343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1591.00 ns (0.5%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 833.00 ns (0.3%)
LB compute : 273.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1801.00 ns (68.3%)
Info: cfl dt = 0.0015829037762628768 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3695e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.020503048920105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8006307160824946, dt = 0.0015829037762628768
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 803.00 ns (0.3%)
LB compute : 275.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2000.00 ns (69.5%)
Info: cfl dt = 0.0015828242672142059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3673e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.014986885636397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8022136198587575, dt = 0.0015828242672142059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 273.39 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (67.3%)
Info: cfl dt = 0.0015827455087754018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3711e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.022481434294292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8037964441259717, dt = 0.0015827455087754018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.1%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 1100.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 286.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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 | 7.3937e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.07064080090488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.805379189634747, dt = 0.001582667537379213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1620.00 ns (0.5%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 773.00 ns (0.2%)
LB compute : 305.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: cfl dt = 0.0015825903951639199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3211e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.912224620624988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8069618571721262, dt = 0.0015825903951639199
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1197.00 ns (0.4%)
gen split merge : 825.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 310.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
Info: cfl dt = 0.001582514115653605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3910e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.063301702691984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80854444756729, dt = 0.001582514115653605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.4%)
patch tree reduce : 1426.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.3%)
LB compute : 266.22 us (93.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.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.9246e+05 | 262144 | 1 | 3.786e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.04901214115569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8101269616829436, dt = 0.001582438719197088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.1%)
patch tree reduce : 1477.00 ns (0.4%)
gen split merge : 863.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1179.00 ns (0.3%)
LB compute : 328.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (73.9%)
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 | 7.3271e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.922916385118738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8117094004021408, dt = 0.0015823642078576104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 1413.00 ns (0.5%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 834.00 ns (0.3%)
LB compute : 293.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.8%)
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.8517e+05 | 262144 | 1 | 3.826e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.889071286468749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8132917646099984, dt = 0.0015822905619909307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1455.00 ns (0.5%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 794.00 ns (0.3%)
LB compute : 292.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (72.4%)
Info: cfl dt = 0.0015822177600858368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4226e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.128865676754465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8148740551719893, dt = 0.0015822177600858368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 853.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1156.00 ns (0.4%)
LB compute : 308.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.7%)
Info: cfl dt = 0.0015821458330701045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3250e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.916184155143098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8164562729320752, dt = 0.0015821458330701045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1547.00 ns (0.5%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 790.00 ns (0.2%)
LB compute : 312.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (68.6%)
Info: cfl dt = 0.0015820746211568802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3986e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.075316196436333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8180384187651453, dt = 0.0015820746211568802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1189.00 ns (0.3%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1509.00 ns (0.4%)
LB compute : 320.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.0%)
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.5945e+05 | 262144 | 1 | 3.975e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.327584352264692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819620493386302, dt = 0.0015820040858815071
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1195.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 276.84 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: cfl dt = 0.0015819342149161484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3718e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01553808343903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8212024974721837, dt = 0.0015819342149161484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1174.00 ns (0.4%)
gen split merge : 1013.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1247.00 ns (0.4%)
LB compute : 272.97 us (93.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.7%)
Info: cfl dt = 0.0015818649547881796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3320e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.928495037383422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8227844316870998, dt = 0.0015818649547881796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1579.00 ns (0.5%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 805.00 ns (0.3%)
LB compute : 273.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1995.00 ns (70.3%)
Info: cfl dt = 0.0015817962397569143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3373e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.939270464152536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8243662966418879, dt = 0.0015817962397569143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1673.00 ns (0.6%)
gen split merge : 899.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.4%)
LB compute : 273.75 us (93.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.9%)
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 | 7.3201e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90111200660678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8259480928816447, dt = 0.0015817279924629478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1198.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 269.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (74.9%)
Info: cfl dt = 0.001581660124952271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3914e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05529793255765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8275298208741078, dt = 0.001581660124952271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 1581.00 ns (0.5%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 807.00 ns (0.3%)
LB compute : 274.65 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (68.2%)
Info: cfl dt = 0.001581592559347961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2737e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.798994323615325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.82911148099906, dt = 0.001581592559347961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1281.00 ns (0.4%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 302.65 us (93.7%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1915.00 ns (69.1%)
Info: cfl dt = 0.0015815252217648763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4342e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1469626377018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.830693073558408, dt = 0.0015815252217648763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 937.00 ns (0.3%)
LB compute : 308.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (70.8%)
Info: cfl dt = 0.0015814580416405712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3172e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.892094644859148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8322745987801727, dt = 0.0015814580416405712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1286.00 ns (0.4%)
LB compute : 306.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.0%)
Info: cfl dt = 0.0015813909588030556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2994e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.852765721802642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8338560568218134, dt = 0.0015813909588030556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 279.02 us (93.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1897.00 ns (67.4%)
Info: cfl dt = 0.0015813239295782195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3983e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06697284550805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8354374477806166, dt = 0.0015813239295782195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1183.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 291.67 us (93.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.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.2266e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.521839011448664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.837018771710195, dt = 0.001581256929384904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.9%)
patch tree reduce : 1189.00 ns (0.3%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1284.00 ns (0.4%)
LB compute : 346.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (69.5%)
Info: cfl dt = 0.001581189951230182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3828e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.031934430798255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8386000286395798, dt = 0.001581189951230182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 1655.00 ns (0.6%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 279.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.3%)
Info: cfl dt = 0.0015811229999034815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2588e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.762025748263213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.84018121859081, dt = 0.0015811229999034815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1436.00 ns (0.4%)
LB compute : 310.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.7%)
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.6195e+05 | 262144 | 1 | 3.960e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.373129265317855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8417623415907134, dt = 0.0015810560678330737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1639.00 ns (0.5%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 320.43 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (68.6%)
Info: cfl dt = 0.0015809891210397137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4444e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.163670839621453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8433433976585465, dt = 0.0015809891210397137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1221.00 ns (0.4%)
gen split merge : 815.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 310.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.9%)
Info: cfl dt = 0.0015809220888743872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4371e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14703946576822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8449243867795861, dt = 0.0015809220888743872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.2%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1080.00 ns (0.3%)
LB compute : 292.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.4%)
Info: cfl dt = 0.001580854879154291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5248e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33674683267048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8465053088684604, dt = 0.001580854879154291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.0%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.4%)
LB compute : 292.60 us (93.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.8%)
Info: cfl dt = 0.0015807874013534528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4276e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.125073731554764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8480861637476147, dt = 0.0015807874013534528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 292.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.2%)
Info: cfl dt = 0.0015807195847624671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3845e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.030871812118598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.849666951148968, dt = 0.0015807195847624671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.2%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 1275.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1124.00 ns (0.3%)
LB compute : 315.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.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 | 7.3811e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02273884899628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8512476707337304, dt = 0.0008356625996028821
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1628.00 ns (0.5%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.2%)
LB compute : 323.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1880.00 ns (67.5%)
Info: cfl dt = 0.0015806232894894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4652e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.567103791862834 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 446.84486916900005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0015.vtk [VTK Dump][rank=0]
- took 35.95 ms, bandwidth = 1.06 GB/s
amr::Godunov: t = 1.8520833333333333, dt = 0.0015806232894894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 335.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (74.0%)
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.0959e+05 | 262144 | 1 | 4.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.232069756747102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8536639566228228, dt = 0.0015805507457941795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1581.00 ns (0.5%)
gen split merge : 1189.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 314.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1841.00 ns (67.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 | 7.3471e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.947289984710833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.855244507368617, dt = 0.0015804771659557696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 306.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.6%)
Info: cfl dt = 0.0015804039544034248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4402e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.148646821283247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8568249845345728, dt = 0.0015804039544034248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.1%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 813.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1084.00 ns (0.3%)
LB compute : 302.40 us (94.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.2%)
Info: cfl dt = 0.0015803317231266674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5275e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.337320217650888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8584053884889762, dt = 0.0015803317231266674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1335.00 ns (0.4%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 312.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.3%)
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 | 7.3724e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.000053578961428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8599857202121028, dt = 0.0015802606009600057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 1134.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 746.00 ns (0.2%)
LB compute : 313.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1985.00 ns (69.7%)
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 | 7.5071e+05 | 262144 | 1 | 3.492e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.291510902988154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.861565980813063, dt = 0.0015801904810615463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 293.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1887.00 ns (67.4%)
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 | 6.1204e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28171208121417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8631461712941244, dt = 0.0015801211301293627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.0%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 283.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
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.5330e+05 | 262144 | 1 | 4.013e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.17647944842995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8647262924242538, dt = 0.0015800522603152541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1726.00 ns (0.6%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 787.00 ns (0.3%)
LB compute : 277.02 us (93.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
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.5041e+05 | 262144 | 1 | 4.030e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.113066519488019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8663063446845691, dt = 0.0015799835648910476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1379.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 314.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.9%)
Info: cfl dt = 0.0015799147390715704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3390e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.92407332269854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8678863282494602, dt = 0.0015799147390715704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.3%)
patch tree reduce : 1395.00 ns (0.4%)
gen split merge : 1184.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1247.00 ns (0.4%)
LB compute : 292.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1999.00 ns (69.5%)
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.7798e+05 | 262144 | 1 | 3.867e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70999028968672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8694662429885318, dt = 0.0015798454978037915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 1184.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 289.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.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.6950e+05 | 262144 | 1 | 3.916e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.525327011679089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8710460884863356, dt = 0.0015797755957472578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.1%)
patch tree reduce : 1541.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 965.00 ns (0.3%)
LB compute : 329.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (67.4%)
Info: cfl dt = 0.0015797048664977333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4604e+05 | 262144 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18518642985937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8726258640820828, dt = 0.0015797048664977333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 1229.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 278.74 us (94.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.9%)
Info: cfl dt = 0.001579633315408822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3206e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.881325078129228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8742055689485806, dt = 0.001579633315408822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 285.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (69.6%)
Info: cfl dt = 0.0015795609701777585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3675e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.982328792880745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8757852022639894, dt = 0.0015795609701777585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1207.00 ns (0.4%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 279.41 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.6%)
Info: cfl dt = 0.0015794878618322922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3197e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.877876951733755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8773647632341672, dt = 0.0015794878618322922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 829.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 314.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1841.00 ns (67.6%)
Info: cfl dt = 0.0015794140291659502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0482e+05 | 262144 | 1 | 3.719e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.288129117709842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8789442510959995, dt = 0.0015794140291659502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 820.00 ns (0.3%)
LB compute : 307.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1868.00 ns (69.3%)
Info: cfl dt = 0.0015793395484693911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9453e+05 | 262144 | 1 | 3.774e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.064219559556978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8805236651251656, dt = 0.0015793395484693911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.0%)
patch tree reduce : 1531.00 ns (0.2%)
gen split merge : 808.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 725.00 ns (0.1%)
LB compute : 600.21 us (96.9%)
LB move op cnt : 0
LB apply : 3.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (78.2%)
Info: cfl dt = 0.0015792645326103555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1512e+05 | 262144 | 1 | 3.666e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.51025546950971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.882103004673635, dt = 0.0015792645326103555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (2.6%)
patch tree reduce : 1195.00 ns (0.4%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1138.00 ns (0.4%)
LB compute : 275.26 us (93.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1931.00 ns (67.9%)
Info: cfl dt = 0.0015791891299893534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3195e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.874482959915232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8836822692062452, dt = 0.0015791891299893534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.3%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1962.00 ns (68.6%)
Info: cfl dt = 0.0015791135021103932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3787e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.001993743953097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8852614583362346, dt = 0.0015791135021103932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 767.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1089.00 ns (0.3%)
LB compute : 312.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.4%)
Info: cfl dt = 0.0015790377921010294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2575e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.738445939224407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886840571838345, dt = 0.0015790377921010294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 307.00 us (94.3%)
LB move op cnt : 0
LB apply : 2.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.6%)
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.2539e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.561408313259015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.888419609630446, dt = 0.001578962097834102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1359.00 ns (0.4%)
gen split merge : 715.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 877.00 ns (0.3%)
LB compute : 317.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.7%)
Info: cfl dt = 0.0015788864564034947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3038e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.837424087299144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8899985717282801, dt = 0.0015788864564034947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.4%)
patch tree reduce : 1811.00 ns (0.6%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 877.00 ns (0.3%)
LB compute : 272.27 us (93.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (69.1%)
Info: cfl dt = 0.001578810831956447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2967e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.821115908815065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8915774581846836, dt = 0.001578810831956447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.5%)
patch tree reduce : 1605.00 ns (0.5%)
gen split merge : 769.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1188.00 ns (0.4%)
LB compute : 272.23 us (92.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (69.5%)
Info: cfl dt = 0.001578735150092831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2988e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.825100238668758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8931562690166401, dt = 0.001578735150092831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1261.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 857.00 ns (0.3%)
LB compute : 304.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.2%)
Info: cfl dt = 0.0015786593261673094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4729e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.201679896208017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.894735004166733, dt = 0.0015786593261673094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 874.00 ns (0.3%)
LB compute : 275.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (72.2%)
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 | 7.3838e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.007881321768146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8963136634929003, dt = 0.0015785832842373556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 14.31 us (4.8%)
gen split merge : 1074.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 268.41 us (89.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1927.00 ns (68.3%)
Info: cfl dt = 0.0015785069791278928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9004e+05 | 262144 | 1 | 3.799e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.959022960934803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8978922467771377, dt = 0.0015785069791278928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1711.00 ns (0.5%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 306.97 us (94.0%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1965.00 ns (62.9%)
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.4932e+05 | 262144 | 1 | 4.037e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.075646072568835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8994707537562656, dt = 0.001578430449923564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.3%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 264.43 us (93.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1876.00 ns (66.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.9219e+05 | 262144 | 1 | 3.787e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.004277103763723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9010491842061892, dt = 0.0015783538091770322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.4%)
patch tree reduce : 1768.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 270.91 us (92.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1830.00 ns (66.9%)
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.9515e+05 | 262144 | 1 | 3.771e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.067618369781203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.902627538015366, dt = 0.0015782774608375891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 755.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.3%)
LB compute : 288.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.0%)
Info: cfl dt = 0.0015782015331111546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4769e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.205642482563572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9042058154762036, dt = 0.0015782015331111546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1246.00 ns (0.4%)
gen split merge : 824.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.2%)
LB compute : 323.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (69.0%)
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.1393e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.305920689603079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9057840170093148, dt = 0.0015781258993824844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 304.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (67.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 | 7.2925e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.804478274786232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073621429086973, dt = 0.0015780500849913292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 783.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 319.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.6%)
Info: cfl dt = 0.0015779740528016344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3436e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.914487751535736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9089401929936887, dt = 0.0015779740528016344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1216.00 ns (0.4%)
gen split merge : 1129.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1127.00 ns (0.3%)
LB compute : 315.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.7%)
Info: cfl dt = 0.001577897729433147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4103e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.058333296097192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105181670464904, dt = 0.001577897729433147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 1134.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 318.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1879.00 ns (67.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 | 7.4284e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.096658395793263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9120960647759235, dt = 0.0015778209900359954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.1%)
patch tree reduce : 1146.00 ns (0.4%)
gen split merge : 767.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 277.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: cfl dt = 0.0015777436935336046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3070e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.832899285347539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9136738857659594, dt = 0.0015777436935336046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1168.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 300.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.5%)
Info: cfl dt = 0.0015776657051518681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3094e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.837256850008956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.915251629459493, dt = 0.0015776657051518681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 1146.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1325.00 ns (0.4%)
LB compute : 280.04 us (93.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.7%)
Info: cfl dt = 0.0015775869364822712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3163e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.851398110846114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9168292951646448, dt = 0.0015775869364822712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1151.00 ns (0.4%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 275.59 us (93.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1741.00 ns (66.3%)
Info: cfl dt = 0.0015774929207565747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3417e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.905707166414434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918406882101127, dt = 0.0015774929207565747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1618.00 ns (0.5%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1106.00 ns (0.4%)
LB compute : 278.48 us (93.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.4%)
Info: cfl dt = 0.0015773791727278128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3473e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.916799711016631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9199843750218837, dt = 0.0015773791727278128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1839.00 ns (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 998.00 ns (0.3%)
LB compute : 287.39 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (75.4%)
Info: cfl dt = 0.0015772642528392587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1452e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.47791609811757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9215617541946115, dt = 0.0015772642528392587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1156.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1174.00 ns (0.4%)
LB compute : 297.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: cfl dt = 0.001577148327744611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2760e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.760122205753046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9231390184474508, dt = 0.001577148327744611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1383.00 ns (0.5%)
gen split merge : 1108.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 794.00 ns (0.3%)
LB compute : 279.18 us (93.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.1%)
Info: cfl dt = 0.0015770316393149506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4358e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10503040162804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9247161667751955, dt = 0.0015770316393149506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1595.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1096.00 ns (0.4%)
LB compute : 272.92 us (93.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (71.1%)
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 | 7.3396e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.895623936832635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262931984145104, dt = 0.0015769144607263239
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.0%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1264.00 ns (0.4%)
LB compute : 321.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.1%)
Info: cfl dt = 0.0015767970554532646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3478e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.912130436763283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9278701128752367, dt = 0.0015767970554532646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1638.00 ns (0.6%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1164.00 ns (0.4%)
LB compute : 274.92 us (93.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.0%)
Info: cfl dt = 0.0015766796100187086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8533e+05 | 262144 | 1 | 3.825e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.840100912372055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.92944690993069, dt = 0.0015766796100187086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.1%)
patch tree reduce : 1586.00 ns (0.5%)
gen split merge : 1150.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 744.00 ns (0.2%)
LB compute : 325.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (68.3%)
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.3382e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.723617751793276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9310235895407086, dt = 0.0015765621228255023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.2%)
patch tree reduce : 1716.00 ns (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.3%)
LB compute : 312.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (69.9%)
Info: cfl dt = 0.0015764445321348485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4612e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.154084695322577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.932600151663534, dt = 0.0015764445321348485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.4%)
patch tree reduce : 1324.00 ns (0.4%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 277.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1957.00 ns (68.8%)
Info: cfl dt = 0.0015763269358672943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3417e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.894245767711867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.934176596195669, dt = 0.0015763269358672943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 294.28 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: cfl dt = 0.0015762095538758923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5226e+05 | 262144 | 1 | 3.485e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28468044472768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9357529231315362, dt = 0.0015762095538758923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.0%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 276.58 us (93.7%)
LB move op cnt : 0
LB apply : 2.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.3%)
Info: cfl dt = 0.001576092661739618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3061e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.814799323965996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.937329132685412, dt = 0.001576092661739618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 291.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (68.8%)
Info: cfl dt = 0.001575976525308858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3548e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.918872118891699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9389052253471517, dt = 0.001575976525308858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.4%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1004.00 ns (0.3%)
LB compute : 275.83 us (93.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.2%)
Info: cfl dt = 0.00157586135869243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3107e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.822319761183962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9404812018724606, dt = 0.00157586135869243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 1367.00 ns (0.4%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 319.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.8%)
Info: cfl dt = 0.0015757472772909668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4869e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.202615016407783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9420570632311531, dt = 0.0015757472772909668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 856.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.2%)
LB compute : 332.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.0%)
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.9035e+05 | 262144 | 1 | 3.797e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.93886461343037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9436328105084442, dt = 0.0015756343421861484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1606.00 ns (0.5%)
gen split merge : 1158.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 873.00 ns (0.3%)
LB compute : 291.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (72.1%)
Info: cfl dt = 0.0015755226095214598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4474e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.114692188405872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9452084448506304, dt = 0.0015755226095214598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1585.00 ns (0.5%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 303.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.0%)
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.5109e+05 | 262144 | 1 | 4.026e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.087325846455009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.946783967460152, dt = 0.0015754121449091034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1329.00 ns (0.5%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 275.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.2%)
Info: cfl dt = 0.0015753022980713927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3287e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.85573610506758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9483593796050611, dt = 0.0015753022980713927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 278.01 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.0%)
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 | 7.4691e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.158271579120605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9499346819031325, dt = 0.0015751932056359975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1344.00 ns (0.5%)
gen split merge : 1214.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1244.00 ns (0.4%)
LB compute : 279.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
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.9998e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.142057104800706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9515098751087685, dt = 0.0015750850018395111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1536.00 ns (0.5%)
gen split merge : 1127.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 755.00 ns (0.2%)
LB compute : 291.74 us (93.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (68.1%)
Info: cfl dt = 0.0015749777457034092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3779e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.958761966197883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.953084960110608, dt = 0.0015749777457034092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.0%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 1161.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 308.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1999.00 ns (68.8%)
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.1877e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.383350487590254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9546599378563114, dt = 0.0015748713935884663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.7%)
patch tree reduce : 1529.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1120.00 ns (0.3%)
LB compute : 337.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1995.00 ns (69.1%)
Info: cfl dt = 0.001574765792795056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3415e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.87786617535196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9562348092498998, dt = 0.001574765792795056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (0.8%)
patch tree reduce : 1258.00 ns (0.1%)
gen split merge : 776.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 864.00 ns (0.1%)
LB compute : 947.01 us (97.6%)
LB move op cnt : 0
LB apply : 4.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (78.9%)
Info: cfl dt = 0.0015746606767940653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4966e+05 | 262144 | 1 | 3.497e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.212327368691337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957809575042695, dt = 0.0015746606767940653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1782.00 ns (0.5%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1024.00 ns (0.3%)
LB compute : 304.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.4%)
Info: cfl dt = 0.001574555528817814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0918e+05 | 262144 | 1 | 3.696e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.335709769037495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.959384235719489, dt = 0.001574555528817814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 276.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: cfl dt = 0.0015744500466265971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4979e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.212811255739343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587912483069, dt = 0.0015744500466265971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1500.00 ns (0.5%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 766.00 ns (0.3%)
LB compute : 273.53 us (93.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1959.00 ns (68.7%)
Info: cfl dt = 0.0015743439423451897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2644e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.706834604282978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9625332412949335, dt = 0.0015743439423451897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1177.00 ns (0.4%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 276.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (68.5%)
Info: cfl dt = 0.001574237034484914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5567e+05 | 262144 | 1 | 3.469e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.337746085621013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9641075852372787, dt = 0.001574237034484914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 323.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1866.00 ns (68.5%)
Info: cfl dt = 0.0015741292166097118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1300e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.414252797442671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9656818222717636, dt = 0.0015741292166097118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 1168.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1299.00 ns (0.4%)
LB compute : 294.28 us (90.7%)
LB move op cnt : 0
LB apply : 14.29 us (4.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.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 | 7.4574e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12097369684917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9672559514883734, dt = 0.0015740202878713034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1629.00 ns (0.5%)
gen split merge : 823.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 310.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.8%)
Info: cfl dt = 0.0015739101092634195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2811e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.73863810833755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9688299717762447, dt = 0.0015739101092634195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.9%)
patch tree reduce : 1250.00 ns (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 318.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
Info: cfl dt = 0.0015737987297015645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3363e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.85703545935515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.970403881885508, dt = 0.0015737987297015645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1386.00 ns (0.4%)
gen split merge : 883.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 957.00 ns (0.3%)
LB compute : 306.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (71.5%)
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.4910e+05 | 262144 | 1 | 4.039e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.028821939234458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719776806152096, dt = 0.0015736862702453705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.0%)
patch tree reduce : 1377.00 ns (0.4%)
gen split merge : 1135.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1307.00 ns (0.4%)
LB compute : 309.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.1%)
Info: cfl dt = 0.0015735728023633568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1458e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.44291046225351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.973551366885455, dt = 0.0015735728023633568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.0%)
patch tree reduce : 1341.00 ns (0.4%)
gen split merge : 1096.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 314.33 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1975.00 ns (69.1%)
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.5458e+05 | 262144 | 1 | 4.005e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.14525867442047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9751249396878183, dt = 0.0015734583972690165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1179.00 ns (0.3%)
LB compute : 325.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.7%)
Info: cfl dt = 0.0015733433876565573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4534e+05 | 262144 | 1 | 4.062e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.944683141183559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9766983980850874, dt = 0.0015733433876565573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1268.00 ns (0.4%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 310.98 us (94.2%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (69.3%)
Info: cfl dt = 0.0015732278618424142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3520e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.885162640164822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.978271741472744, dt = 0.0015732278618424142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 1176.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1209.00 ns (0.4%)
LB compute : 299.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (67.3%)
Info: cfl dt = 0.001573112407838256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1242e+05 | 262144 | 1 | 3.680e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.391764726171363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9798449693345863, dt = 0.001573112407838256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.3%)
patch tree reduce : 1387.00 ns (0.5%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 281.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.84 us (92.5%)
Info: cfl dt = 0.0015729978998000398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3068e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.7850913765099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9814180817424245, dt = 0.0015729978998000398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.0%)
patch tree reduce : 1618.00 ns (0.5%)
gen split merge : 1149.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1276.00 ns (0.4%)
LB compute : 315.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.5%)
Info: cfl dt = 0.0015728847604327889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3729e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.92684936730977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9829910796422245, dt = 0.0013839203577754589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1018.00 ns (0.3%)
LB compute : 277.07 us (93.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.1%)
Info: cfl dt = 0.001572784238966956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3779e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.021902817408067 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 478.432309033 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0016.vtk [VTK Dump][rank=0]
- took 35.74 ms, bandwidth = 1.07 GB/s
amr::Godunov: t = 1.984375, dt = 0.001572784238966956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.0%)
patch tree reduce : 1428.00 ns (0.4%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 780.00 ns (0.2%)
LB compute : 328.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.3%)
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 | 7.0523e+05 | 262144 | 1 | 3.717e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.232256646191493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985947784238967, dt = 0.001572670309774088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.0%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 780.00 ns (0.2%)
LB compute : 307.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.7%)
Info: cfl dt = 0.001572558239837081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3940e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.969076326481687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.987520454548741, dt = 0.001572558239837081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 1147.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 322.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.3%)
Info: cfl dt = 0.0015724472863284256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0731e+05 | 262144 | 1 | 3.706e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.275005422516463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9890930127885782, dt = 0.0015724472863284256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.0%)
patch tree reduce : 1738.00 ns (0.5%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 323.21 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.01 us (70.4%)
Info: cfl dt = 0.0015723370604613298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4478e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08307773905944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9906654600749065, dt = 0.0015723370604613298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1197.00 ns (0.4%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 269.20 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1948.00 ns (67.5%)
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.9185e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.938946957911293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9922377971353677, dt = 0.0015722272804233313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.6%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 271.46 us (93.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (66.2%)
Info: cfl dt = 0.001572117700738971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4240e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.029443652635564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.993810024415791, dt = 0.001572117700738971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1531.00 ns (0.5%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 289.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.5%)
Info: cfl dt = 0.0015720081252827197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3201e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.804018070310157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.99538214211653, dt = 0.0015720081252827197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.9%)
patch tree reduce : 1620.00 ns (0.5%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 279.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (67.8%)
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 | 6.9269e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.95388675558676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9969541502418129, dt = 0.0015718984266116704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.4%)
patch tree reduce : 1466.00 ns (0.5%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 270.14 us (93.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1862.00 ns (67.3%)
Info: cfl dt = 0.0015717885347377597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2577e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.6669705332175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9985260486684246, dt = 0.0015717885347377597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.2%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 268.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.0%)
Info: cfl dt = 0.0015716784112680135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4442e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.068473962862157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0000978372031626, dt = 0.0015716784112680135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1511.00 ns (0.5%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 303.11 us (93.9%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (68.7%)
Info: cfl dt = 0.0015715680753612823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3072e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.771694186004202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0016695156144304, dt = 0.0015715680753612823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 296.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1778.00 ns (66.8%)
Info: cfl dt = 0.0015714575843124837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4807e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.145015186371296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0032410836897916, dt = 0.0015714575843124837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.9%)
patch tree reduce : 1434.00 ns (0.4%)
gen split merge : 1107.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 339.21 us (94.4%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.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.0621e+05 | 262144 | 1 | 4.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.082506414027032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.004812541274104, dt = 0.0015713470039562217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.0%)
patch tree reduce : 1477.00 ns (0.4%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 315.12 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.3%)
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.1895e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.356463654378068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.00638388827806, dt = 0.001571236541763131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 1294.00 ns (0.4%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 805.00 ns (0.3%)
LB compute : 271.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: cfl dt = 0.0015711264041415429 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3309e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.81825824288072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0079551248198233, dt = 0.0015711264041415429
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 825.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 809.00 ns (0.3%)
LB compute : 300.96 us (94.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.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 | 7.4096e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.986956395555842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.009526251223965, dt = 0.0015710167540618192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.5%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 280.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Info: cfl dt = 0.0015709076940289546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4851e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14873898633625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.011097267978027, dt = 0.0015709076940289546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 280.94 us (93.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (68.4%)
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 | 7.3361e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.826234908490719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0126681756720557, dt = 0.0015707992588035126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1450.00 ns (0.5%)
gen split merge : 1114.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 740.00 ns (0.2%)
LB compute : 294.52 us (94.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.0%)
Info: cfl dt = 0.0015706914259236617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4008e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.964847831831904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0142389749308593, dt = 0.0015706914259236617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1615.00 ns (0.5%)
gen split merge : 1170.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 746.00 ns (0.2%)
LB compute : 283.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1854.00 ns (66.0%)
Info: cfl dt = 0.0015705841437434157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3132e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.774641279379296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.015809666356783, dt = 0.0015705841437434157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1654.00 ns (0.6%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 277.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1775.00 ns (67.3%)
Info: cfl dt = 0.0015704773707229428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4728e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.117903980273574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0173802505005263, dt = 0.0015704773707229428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1411.00 ns (0.5%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.3%)
LB compute : 274.12 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.5%)
Info: cfl dt = 0.0015703711111830262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2274e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.587434058246197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0189507278712493, dt = 0.0015703711111830262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.2%)
patch tree reduce : 1411.00 ns (0.5%)
gen split merge : 897.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 277.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1811.00 ns (68.2%)
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.6779e+05 | 262144 | 1 | 3.926e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.40141074045216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0205210989824325, dt = 0.001570265435266097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (2.0%)
patch tree reduce : 1310.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.4%)
LB compute : 275.03 us (93.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1734.00 ns (67.1%)
Info: cfl dt = 0.0015701604953057896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5146e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.204653125344603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0220913644176988, dt = 0.0015701604953057896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1652.00 ns (0.6%)
gen split merge : 1119.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 739.00 ns (0.2%)
LB compute : 278.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1820.00 ns (67.8%)
Info: cfl dt = 0.0015700564644186227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3392e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.82551708133349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0236615249130048, dt = 0.0015700564644186227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1134.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1285.00 ns (0.4%)
LB compute : 296.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (71.8%)
Info: cfl dt = 0.0015699535616738379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2918e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.722081185737862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0252315813774233, dt = 0.0015699535616738379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1099.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 292.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: cfl dt = 0.0015698520432793502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3055e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.750609637340757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0268015349390973, dt = 0.0015698520432793502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 292.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.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 | 7.3881e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.927713909103588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0283713869823767, dt = 0.0015697521607166557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.3%)
patch tree reduce : 1445.00 ns (0.4%)
gen split merge : 1157.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 299.52 us (93.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.8%)
Info: cfl dt = 0.0015696541151086001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3310e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.803714314307895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0299411391430935, dt = 0.0015696541151086001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1114.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 823.00 ns (0.3%)
LB compute : 285.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.2%)
Info: cfl dt = 0.0015695580266598592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2915e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.717491475730688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.031510793258202, dt = 0.0015695580266598592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1127.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 289.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: cfl dt = 0.0015694639253355184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3209e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.77994229275334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.033080351284862, dt = 0.0015694639253355184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1716.00 ns (0.6%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1089.00 ns (0.4%)
LB compute : 274.34 us (93.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.5%)
Info: cfl dt = 0.0015693717555950659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3200e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.777068872414251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0346498152101975, dt = 0.0015693717555950659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1184.00 ns (0.3%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.2%)
LB compute : 322.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (68.6%)
Info: cfl dt = 0.0015692814961796872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1271e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.360354596214034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0362191869657926, dt = 0.0015692814961796872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1150.00 ns (0.3%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.2%)
LB compute : 323.42 us (94.1%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (79.9%)
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.4979e+05 | 262144 | 1 | 4.034e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.003416048699394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0377884684619723, dt = 0.0015691932056701597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.6%)
patch tree reduce : 1176.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 268.11 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.4%)
Info: cfl dt = 0.0015691069403027276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1248e+05 | 262144 | 1 | 3.679e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.353676405976362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0393576616676423, dt = 0.0015691069403027276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.0%)
patch tree reduce : 1129.00 ns (0.3%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 307.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.5%)
Info: cfl dt = 0.0015690226646586179 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3515e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.841235159626892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.040926768607945, dt = 0.0015690226646586179
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1481.00 ns (0.5%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 287.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1960.00 ns (69.4%)
Info: cfl dt = 0.001568940262310863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3097e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.750355597875515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0424957912726036, dt = 0.001568940262310863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 1174.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1145.00 ns (0.3%)
LB compute : 321.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.3%)
Info: cfl dt = 0.0015688595757366167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2498e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.620504223761934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0440647315349145, dt = 0.0015688595757366167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.1%)
patch tree reduce : 1577.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 272.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.4%)
Info: cfl dt = 0.0015687804424354256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1797e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.468746583270104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.045633591110651, dt = 0.0015687804424354256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.4%)
patch tree reduce : 1354.00 ns (0.5%)
gen split merge : 1151.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 769.00 ns (0.3%)
LB compute : 273.08 us (92.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (71.1%)
Info: cfl dt = 0.0015687027339200649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8748e+05 | 262144 | 1 | 3.813e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.810990884100606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0472023715530865, dt = 0.0015687027339200649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 1204.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 319.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1970.00 ns (68.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.8670e+05 | 262144 | 1 | 3.817e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.793371789554584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0487710742870067, dt = 0.0015686263347459242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.0%)
patch tree reduce : 1641.00 ns (0.5%)
gen split merge : 1108.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 329.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.2%)
Info: cfl dt = 0.0015685511817150166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3287e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.787367667275229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0503397006217527, dt = 0.0015685511817150166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1731.00 ns (0.6%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 294.17 us (93.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: cfl dt = 0.001568477222016397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3049e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.735360214448187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.051908251803468, dt = 0.001568477222016397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 303.18 us (93.9%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (69.2%)
Info: cfl dt = 0.0015684044127318348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1654e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.434155237020358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0534767290254843, dt = 0.0015684044127318348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.4%)
patch tree reduce : 1509.00 ns (0.5%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.3%)
LB compute : 271.55 us (93.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1765.00 ns (66.9%)
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.6513e+05 | 262144 | 1 | 3.941e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.326149771013636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0550451334382163, dt = 0.0015683327886699436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1470.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 760.00 ns (0.2%)
LB compute : 302.41 us (91.1%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
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.4393e+05 | 262144 | 1 | 4.071e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.8687528258866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.056613466226886, dt = 0.0015682623575360415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1188.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 300.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1820.00 ns (67.6%)
Info: cfl dt = 0.0015681931328958999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3680e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.868362850685259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.058181728584422, dt = 0.0015681931328958999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 833.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 341.78 us (94.8%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1938.00 ns (68.0%)
Info: cfl dt = 0.0015681251545762345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3724e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.877168101958349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0597499217173176, dt = 0.0015681251545762345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 306.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (68.4%)
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.5730e+05 | 262144 | 1 | 3.988e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.154910270814526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.061318046871894, dt = 0.0015680584778896157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.1%)
patch tree reduce : 1133.00 ns (0.4%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1086.00 ns (0.4%)
LB compute : 266.54 us (93.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.2%)
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.4094e+05 | 262144 | 1 | 4.090e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.802058113110474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0628861053497833, dt = 0.0015679931599174432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 827.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 316.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.0%)
Info: cfl dt = 0.0015679292740564243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3733e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.876957854337006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.064454098509701, dt = 0.0015679292740564243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.9%)
patch tree reduce : 1347.00 ns (0.4%)
gen split merge : 750.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 335.10 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.2%)
Info: cfl dt = 0.0015678669805294517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2869e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.690360241250746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0660220277837573, dt = 0.0015678669805294517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1126.00 ns (0.3%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 307.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.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 | 7.3017e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.721567324528062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0675898947642866, dt = 0.001567806288350672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1227.00 ns (0.3%)
gen split merge : 858.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 342.64 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Info: cfl dt = 0.0015677470960003942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3849e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.900053019578046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0691577010526374, dt = 0.0015677470960003942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 301.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (67.7%)
Info: cfl dt = 0.0015676892736442313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2916e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.698633939559329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0707254481486377, dt = 0.0015676892736442313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1137.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 303.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (66.5%)
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 | 6.9946e+05 | 262144 | 1 | 3.748e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.058573205819949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0722931374222817, dt = 0.0015676327096910193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 277.54 us (93.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1851.00 ns (68.4%)
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.6489e+05 | 262144 | 1 | 3.943e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.313756955151083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0738607701319727, dt = 0.0015675773315441501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1701.00 ns (0.5%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1083.00 ns (0.3%)
LB compute : 292.32 us (93.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.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 | 7.3022e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.719664583917872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0754283474635167, dt = 0.0015675231112095064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.5%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 1134.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 267.34 us (93.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
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.3803e+05 | 262144 | 1 | 4.109e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.734752371759305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0769958705747262, dt = 0.0015674700393651124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 1084.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1174.00 ns (0.4%)
LB compute : 307.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1770.00 ns (67.3%)
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.2605e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.47635298146271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0785633406140915, dt = 0.001567418170129004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1221.00 ns (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 300.58 us (94.0%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (70.3%)
Info: cfl dt = 0.001567367632429346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2801e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.670501353459668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0801307587842204, dt = 0.001567367632429346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 800.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 298.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (73.6%)
Info: cfl dt = 0.0015673186203880017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3644e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.851445441421786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08169812641665, dt = 0.0015673186203880017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 277.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (70.2%)
Info: cfl dt = 0.0015672713434120727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3589e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.839271614265956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.083265445037038, dt = 0.0015672713434120727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 298.38 us (93.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.3%)
Info: cfl dt = 0.0015672259926631394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4050e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.937888420101588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08483271638045, dt = 0.0015672259926631394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.3%)
patch tree reduce : 1417.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.3%)
LB compute : 268.90 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.6%)
Info: cfl dt = 0.0015671827435822557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3683e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.858581207848818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0863999423731134, dt = 0.0015671827435822557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 1014.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1164.00 ns (0.4%)
LB compute : 273.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (68.2%)
Info: cfl dt = 0.0015671417825654653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3107e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.734131712814486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0879671251166956, dt = 0.0015671417825654653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1628.00 ns (0.5%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 302.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.0%)
Info: cfl dt = 0.0015671032491933596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5220e+05 | 262144 | 1 | 3.485e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18833882463068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.089534266899261, dt = 0.0015671032491933596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.2%)
LB compute : 348.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (71.9%)
Info: cfl dt = 0.00156706716554068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4974e+05 | 262144 | 1 | 4.035e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.983059120381295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.091101370148454, dt = 0.00156706716554068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.0%)
patch tree reduce : 1340.00 ns (0.4%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1636.00 ns (0.5%)
LB compute : 326.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.4%)
Info: cfl dt = 0.0015670334330571709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1948e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.483452117817357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.092668437313995, dt = 0.0015670334330571709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1520.00 ns (0.5%)
gen split merge : 1129.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 275.10 us (93.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1794.00 ns (65.3%)
Info: cfl dt = 0.0015670019526565116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3291e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.772198549161514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0942354707470523, dt = 0.0015670019526565116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1170.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 276.89 us (93.9%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1937.00 ns (68.4%)
Info: cfl dt = 0.0015669727219328644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9988e+05 | 262144 | 1 | 3.746e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.061153647592215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0958024726997087, dt = 0.0015669727219328644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 1073.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 984.00 ns (0.3%)
LB compute : 303.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1851.00 ns (68.7%)
Info: cfl dt = 0.0015669458525472933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3003e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.709516632154934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0973694454216414, dt = 0.0015669458525472933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.8%)
patch tree reduce : 1528.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 322.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1822.00 ns (67.8%)
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.7231e+05 | 262144 | 1 | 3.899e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.467298219200691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0989363912741887, dt = 0.0015669215442107017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.3%)
patch tree reduce : 1285.00 ns (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 265.75 us (93.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1787.00 ns (65.1%)
Info: cfl dt = 0.001566900034301221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2344e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.567298286139943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1005033128183994, dt = 0.001566900034301221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 275.18 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.3%)
Info: cfl dt = 0.0015667938942108268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4621e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05706407782033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1020702128527007, dt = 0.0015667938942108268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1407.00 ns (0.5%)
gen split merge : 1143.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 287.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.00 ns (67.3%)
Info: cfl dt = 0.0015666514727226627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5075e+05 | 262144 | 1 | 3.492e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.153617648739687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1036370067469115, dt = 0.0015666514727226627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.1%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1053.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1241.00 ns (0.4%)
LB compute : 311.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.8%)
Info: cfl dt = 0.0015665089989299287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3765e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.870262446603604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1052036582196343, dt = 0.0015665089989299287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1341.00 ns (0.5%)
gen split merge : 1289.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1180.00 ns (0.4%)
LB compute : 277.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.1%)
Info: cfl dt = 0.001566366500667422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3178e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.742508585479337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1067701672185644, dt = 0.001566366500667422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 1261.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1166.00 ns (0.4%)
LB compute : 275.25 us (92.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (67.1%)
Info: cfl dt = 0.0015662240693167238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3128e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.73038635801762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.108336533719232, dt = 0.0015662240693167238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.4%)
LB compute : 326.55 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.9%)
Info: cfl dt = 0.0015660818670461987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9781e+05 | 262144 | 1 | 3.757e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.008958753277577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1099027577885487, dt = 0.0015660818670461987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1465.00 ns (0.5%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 284.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1871.00 ns (67.2%)
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.9309e+05 | 262144 | 1 | 3.782e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.90613808279482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1114688396555947, dt = 0.0015659401085589201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1694.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1084.00 ns (0.4%)
LB compute : 266.73 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (68.5%)
Info: cfl dt = 0.0015657989756030426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4784e+05 | 262144 | 1 | 3.505e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082294994559426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1130347797641535, dt = 0.0015657989756030426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 946.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1084.00 ns (0.4%)
LB compute : 269.47 us (93.1%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1798.00 ns (67.8%)
Info: cfl dt = 0.001565658544722571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2639e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.619461577256951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1146005787397564, dt = 0.001565658544722571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1860.00 ns (0.6%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 269.94 us (93.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Info: cfl dt = 0.0015655182400708607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3066e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.710054355390039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.116166237284479, dt = 0.0005004293821877503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.2%)
patch tree reduce : 1261.00 ns (0.4%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 269.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Info: cfl dt = 0.0015654831777232414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3608e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.058589148683798 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 510.125275905 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0017.vtk [VTK Dump][rank=0]
- took 38.31 ms, bandwidth = 1018.04 MB/s
amr::Godunov: t = 2.1166666666666667, dt = 0.0015654831777232414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1176.00 ns (0.4%)
LB compute : 278.12 us (93.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
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.0877e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.087749965702677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.11823214984439, dt = 0.001565337590710194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 1434.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 331.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (67.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 | 7.3218e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.739463031313903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1197974874351004, dt = 0.0015651920971665372
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1329.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1135.00 ns (0.3%)
LB compute : 318.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.1%)
Info: cfl dt = 0.001565047525572721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3174e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.728517673094515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.121362679532267, dt = 0.001565047525572721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.3%)
patch tree reduce : 1295.00 ns (0.5%)
gen split merge : 1193.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 266.97 us (93.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1918.00 ns (69.9%)
Info: cfl dt = 0.0015649045473800653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3867e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.876042374484712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1229277270578395, dt = 0.0015649045473800653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 719.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 324.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.6%)
Info: cfl dt = 0.0015647635076918476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2292e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.535992944563969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1244926316052197, dt = 0.0015647635076918476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.8%)
patch tree reduce : 1093.00 ns (0.3%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 334.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.0%)
Info: cfl dt = 0.0015646244444504074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4525e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01457867507336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1260573951129116, dt = 0.0015646244444504074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1335.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 285.61 us (93.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.3%)
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.7906e+05 | 262144 | 1 | 3.860e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.590952885398298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.127622019557362, dt = 0.0015644872272882364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.8%)
patch tree reduce : 1128.00 ns (0.3%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 334.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.9%)
Info: cfl dt = 0.0015643516617685684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3843e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.865086772504082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1291865067846505, dt = 0.0015643516617685684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1196.00 ns (0.4%)
gen split merge : 815.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 309.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (66.9%)
Info: cfl dt = 0.0015642175359979063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1935e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.453864220329761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.130750858446419, dt = 0.0015642175359979063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.1%)
patch tree reduce : 1526.00 ns (0.5%)
gen split merge : 14.20 us (4.6%)
split / merge op : 0/0
apply split merge : 1186.00 ns (0.4%)
LB compute : 272.82 us (89.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.1%)
Info: cfl dt = 0.0015640846262200314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5313e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.178076619655755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.132315075982417, dt = 0.0015640846262200314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.2%)
patch tree reduce : 1494.00 ns (0.5%)
gen split merge : 869.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 974.00 ns (0.3%)
LB compute : 276.75 us (93.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.0%)
Info: cfl dt = 0.0015639526820639264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5015e+05 | 262144 | 1 | 3.495e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.112761475080223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.133879160608637, dt = 0.0015639526820639264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 312.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1818.00 ns (68.6%)
Info: cfl dt = 0.0015638214087112664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3348e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.75351271846621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.135443113290701, dt = 0.0015638214087112664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 286.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.7%)
Info: cfl dt = 0.0015636904702367974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3711e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.830048996848427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.137006934699412, dt = 0.0015636904702367974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1016.00 ns (0.3%)
LB compute : 284.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1989.00 ns (67.8%)
Info: cfl dt = 0.0015635595645666876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3857e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.860160337470377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.138570625169649, dt = 0.0015635595645666876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 291.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.7%)
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.3168e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.563567307852034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1401341847342157, dt = 0.0015634284292350017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1344.00 ns (0.4%)
gen split merge : 1069.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 297.99 us (94.2%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (67.9%)
Info: cfl dt = 0.001563296817347579 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5522e+05 | 262144 | 1 | 3.471e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21489444073375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.141697613163451, dt = 0.001563296817347579
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1517.00 ns (0.4%)
gen split merge : 1205.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 326.41 us (94.5%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (67.8%)
Info: cfl dt = 0.001563164495708653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4023e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.89178702595513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1432609099807984, dt = 0.001563164495708653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.2%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1004.00 ns (0.3%)
LB compute : 270.86 us (93.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1726.00 ns (67.9%)
Info: cfl dt = 0.0015630312658810473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4628e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.020218106292212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.144824074476507, dt = 0.0015630312658810473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1441.00 ns (0.5%)
gen split merge : 1170.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 294.08 us (93.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1992.00 ns (69.1%)
Info: cfl dt = 0.0015628969903294665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4015e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.88740040978997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.146387105742388, dt = 0.0015628969903294665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1229.00 ns (0.4%)
gen split merge : 768.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 307.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (69.1%)
Info: cfl dt = 0.0015627616075924906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3808e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.84146172638073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1479500027327174, dt = 0.0015627616075924906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1328.00 ns (0.4%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 285.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.7%)
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.9275e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.867377752918541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.14951276434031, dt = 0.00156262561881976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 283.02 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.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 | 7.2935e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.651485600411181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1510753899591295, dt = 0.0015624891527310843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1343.00 ns (0.5%)
gen split merge : 1143.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 278.04 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.7%)
Info: cfl dt = 0.0015623521995471045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3385e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.746585999109309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1526378791118606, dt = 0.0015623521995471045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 290.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.5%)
Info: cfl dt = 0.0015622148450169576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4108e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90039787624649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1542002313114077, dt = 0.0015622148450169576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 303.42 us (94.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.0%)
Info: cfl dt = 0.0015620772218149484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3603e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.790563938005342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.155762446156425, dt = 0.0015620772218149484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 1020.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 299.12 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.9%)
Info: cfl dt = 0.0015619394873630792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4089e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.89337557256315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.15732452337824, dt = 0.0015619394873630792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.0%)
patch tree reduce : 1271.00 ns (0.4%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 327.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (73.1%)
Info: cfl dt = 0.0015618018069469574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5118e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1127296407087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.158886462865603, dt = 0.0015618018069469574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.2%)
patch tree reduce : 1330.00 ns (0.4%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1036.00 ns (0.3%)
LB compute : 326.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.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.7613e+05 | 262144 | 1 | 3.877e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.501799234641679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.16044826467255, dt = 0.0015616643414717473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.2%)
patch tree reduce : 1381.00 ns (0.4%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 301.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (70.2%)
Info: cfl dt = 0.0015615272247862858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3592e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78259871154538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1620099290140216, dt = 0.0015615272247862858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1722.00 ns (0.6%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 272.05 us (93.3%)
LB move op cnt : 0
LB apply : 2.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.8%)
Info: cfl dt = 0.0015613905521362128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2920e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.637162233471313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1635714562388078, dt = 0.0015613905521362128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 292.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1917.00 ns (69.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.6289e+05 | 262144 | 1 | 3.955e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.213956195320097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.165132846790944, dt = 0.0015612543879614975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 925.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1291.00 ns (0.4%)
LB compute : 305.18 us (94.0%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1969.00 ns (68.8%)
Info: cfl dt = 0.0015611187530796748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3084e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.669584999355628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1666941011789054, dt = 0.0015611187530796748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1329.00 ns (0.4%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 305.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (67.4%)
Info: cfl dt = 0.0015609836111217335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4410e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.952616099958277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.168255219931985, dt = 0.0015609836111217335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1541.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 317.77 us (94.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (71.7%)
Info: cfl dt = 0.001560848866445671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3304e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.714113703897237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.169816203543107, dt = 0.001560848866445671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1366.00 ns (0.4%)
gen split merge : 1176.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 288.35 us (93.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 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 | 7.4695e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01097048357646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1713770524095524, dt = 0.0015607143766266521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 277.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1930.00 ns (69.3%)
Info: cfl dt = 0.0015605801824147328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3206e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.69041423288843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.172937766786179, dt = 0.0015605801824147328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 276.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.7%)
Info: cfl dt = 0.0015604461849923297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2868e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.61662496946193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1744983469685937, dt = 0.0015604461849923297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 1127.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1287.00 ns (0.4%)
LB compute : 304.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: cfl dt = 0.001560312229899567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2779e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.59617521212871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.176058793153586, dt = 0.001560312229899567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 315.33 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (67.9%)
Info: cfl dt = 0.001560178153356089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2132e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.456096439219204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.177619105383486, dt = 0.001560178153356089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.0%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 830.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 965.00 ns (0.3%)
LB compute : 320.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.6%)
Info: cfl dt = 0.001560043883515534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3485e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.744720459339687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.179179283536842, dt = 0.001560043883515534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 299.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.2%)
Info: cfl dt = 0.0015599094636282698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3631e+05 | 262144 | 1 | 4.120e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632324705344345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1807393274203575, dt = 0.0015599094636282698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 1118.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 936.00 ns (0.3%)
LB compute : 314.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1880.00 ns (67.7%)
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.5315e+05 | 262144 | 1 | 4.014e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.991882465805219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1822992368839857, dt = 0.0015597749808167543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.2%)
patch tree reduce : 1511.00 ns (0.5%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.2%)
LB compute : 312.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (68.1%)
Info: cfl dt = 0.001559640534665567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6660e+05 | 262144 | 1 | 3.933e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.278823344170341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1838590118648025, dt = 0.001559640534665567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1198.00 ns (0.4%)
LB compute : 315.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.0%)
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 | 7.2923e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.619047064370115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.185418652399468, dt = 0.0015594755585195909
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1178.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 313.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (67.0%)
Info: cfl dt = 0.0015592975306503777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3159e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.667791823693289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1869781279579876, dt = 0.0015592975306503777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1245.00 ns (0.4%)
LB compute : 301.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (68.6%)
Info: cfl dt = 0.0015591201572535858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3641e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.76931213516366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.188537425488638, dt = 0.0015591201572535858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1327.00 ns (0.5%)
gen split merge : 769.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 276.12 us (93.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (67.5%)
Info: cfl dt = 0.0015589435071901565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4810e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.017720682476476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1900965456458916, dt = 0.0015589435071901565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1441.00 ns (0.5%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 276.80 us (93.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1916.00 ns (68.8%)
Info: cfl dt = 0.001558767264712717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4725e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.997642106233698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.191655489153082, dt = 0.001558767264712717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 1471.00 ns (0.5%)
gen split merge : 1079.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 275.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (67.4%)
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 | 7.3037e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.63470614274875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1932142564177948, dt = 0.0015585912251825972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1451.00 ns (0.5%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 278.37 us (93.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1760.00 ns (66.7%)
Info: cfl dt = 0.0015584152552174156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2984e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.621463361178572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1947728476429775, dt = 0.0015584152552174156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.33 us (5.8%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 995.00 ns (0.3%)
LB compute : 283.78 us (90.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.4%)
Info: cfl dt = 0.0015582392465150563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3413e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.71163105289278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.196331262898195, dt = 0.0015582392465150563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (0.8%)
patch tree reduce : 1198.00 ns (0.2%)
gen split merge : 820.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.1%)
LB compute : 714.70 us (97.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.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 | 7.3289e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.683295477333793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1978895021447102, dt = 0.001558063120948792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1760.00 ns (0.6%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.4%)
LB compute : 284.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (69.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 | 7.3404e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.706129994130686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.199447565265659, dt = 0.0015578868292454885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.1%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1380.00 ns (0.4%)
LB compute : 292.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.7%)
Info: cfl dt = 0.001557710348906484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4271e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.889765952379014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2010054520949045, dt = 0.001557710348906484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1658.00 ns (0.6%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 275.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (69.5%)
Info: cfl dt = 0.0015575336862680487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3154e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.648936061289438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.202563162443811, dt = 0.0015575336862680487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 297.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.7%)
Info: cfl dt = 0.0015573568759784913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3347e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.688560945548494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.204120696130079, dt = 0.0015573568759784913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 315.76 us (94.6%)
LB move op cnt : 0
LB apply : 2.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.2%)
Info: cfl dt = 0.0015571799625762356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2800e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.569863348556057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2056780530060576, dt = 0.0015571799625762356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1671.00 ns (0.5%)
gen split merge : 1098.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 313.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.7%)
Info: cfl dt = 0.0015570030071553544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3786e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.778880469629742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.207235232968634, dt = 0.0015570030071553544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1635.00 ns (0.5%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1204.00 ns (0.4%)
LB compute : 305.97 us (94.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.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 | 7.2972e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.602977883092349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2087922359757894, dt = 0.0015568260590071471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1616.00 ns (0.5%)
gen split merge : 1078.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 298.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (69.1%)
Info: cfl dt = 0.0015566492128128353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3945e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.809358132225109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2103490620347968, dt = 0.0015566492128128353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.1%)
patch tree reduce : 1648.00 ns (0.5%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.2%)
LB compute : 324.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.7%)
Info: cfl dt = 0.0015564726518204437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3244e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.65770850115172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2119057112476095, dt = 0.0015564726518204437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.3%)
patch tree reduce : 1670.00 ns (0.5%)
gen split merge : 807.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1167.00 ns (0.4%)
LB compute : 304.49 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1856.00 ns (67.2%)
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.7124e+05 | 262144 | 1 | 3.905e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.347677996696895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2134621838994297, dt = 0.00155629661655637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 268.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1850.00 ns (69.7%)
Info: cfl dt = 0.0015561213457306858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2577e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.511575497274743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2150184805159863, dt = 0.0015561213457306858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 728.00 ns (0.2%)
LB compute : 303.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.8%)
Info: cfl dt = 0.0015559470283281255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3605e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.729380679112383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.216574601861717, dt = 0.0015559470283281255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.1%)
patch tree reduce : 1196.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 265.71 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1950.00 ns (68.5%)
Info: cfl dt = 0.001555773802772793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3198e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.640728385677495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.218130548890045, dt = 0.001555773802772793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1153.00 ns (0.4%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1127.00 ns (0.4%)
LB compute : 294.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.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 | 7.5646e+05 | 262144 | 1 | 3.465e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.162087644436667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2196863226928176, dt = 0.0015556017545607034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.2%)
patch tree reduce : 1317.00 ns (0.4%)
gen split merge : 835.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 936.00 ns (0.3%)
LB compute : 275.40 us (93.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1759.00 ns (66.3%)
Info: cfl dt = 0.0015554309644874324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3557e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.714043510716143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2212419244473782, dt = 0.0015554309644874324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 306.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.9%)
Info: cfl dt = 0.0015552616027311329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5312e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.087127368670206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2227973554118656, dt = 0.0015552616027311329
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.1%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 1150.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 277.48 us (93.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.3%)
Info: cfl dt = 0.0015550947588586265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3832e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.76917889178589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.224352617014597, dt = 0.0015550947588586265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 1201.00 ns (0.3%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 328.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.5%)
Info: cfl dt = 0.0015549313151491826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2914e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.57155723665819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2259077117734556, dt = 0.0015549313151491826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1230.00 ns (0.4%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 297.11 us (94.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1941.00 ns (67.1%)
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.2882e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.42767394077043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2274626430886046, dt = 0.0015547706978985651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1378.00 ns (0.4%)
gen split merge : 1178.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1117.00 ns (0.4%)
LB compute : 297.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1897.00 ns (67.2%)
Info: cfl dt = 0.0015546117845838291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3521e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.697884629554977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.229017413786503, dt = 0.0015546117845838291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 756.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 291.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.6%)
Info: cfl dt = 0.001554456134204013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2883e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.559977420281651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.230572025571087, dt = 0.001554456134204013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 1189.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 320.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (69.6%)
Info: cfl dt = 0.0015543036024340897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2568e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.491141131559742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.232126481705291, dt = 0.0015543036024340897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 301.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1844.00 ns (67.5%)
Info: cfl dt = 0.0015541536977952636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3315e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.649073931955577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2336807853077247, dt = 0.0015541536977952636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.3%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1204.00 ns (0.4%)
LB compute : 308.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.3%)
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.9635e+05 | 262144 | 1 | 3.765e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.862237996049922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.23523493900552, dt = 0.001554005626076192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 1439.00 ns (0.4%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 302.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1947.00 ns (67.7%)
Info: cfl dt = 0.001553858776908766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3447e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.674356410561314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2367889446315963, dt = 0.001553858776908766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 1167.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 313.74 us (94.4%)
LB move op cnt : 0
LB apply : 2.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.6%)
Info: cfl dt = 0.0015537127403489326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3407e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.664246441061445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.238342803408505, dt = 0.0015537127403489326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1144.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 294.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.2%)
Info: cfl dt = 0.0015535672725807905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3693e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.723787321803611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2398965161488538, dt = 0.0015535672725807905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1248.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 987.00 ns (0.3%)
LB compute : 288.70 us (92.9%)
LB move op cnt : 0
LB apply : 6.09 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.3%)
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.9612e+05 | 262144 | 1 | 3.766e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.851692941585528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2414500834214346, dt = 0.0015534222513093694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.1%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 810.00 ns (0.3%)
LB compute : 277.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.3%)
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 | 7.3854e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.75519316735745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.243003505672744, dt = 0.0015532776326877612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 770.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 330.97 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.06 us (70.1%)
Info: cfl dt = 0.0015531334306600245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3736e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.728627802169981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.244556783305432, dt = 0.0015531334306600245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.8%)
patch tree reduce : 1550.00 ns (0.4%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 333.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (71.6%)
Info: cfl dt = 0.0015529896865552448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3579e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.693607692312817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.246109916736092, dt = 0.0015529896865552448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 305.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1839.00 ns (67.3%)
Info: cfl dt = 0.001552846422911455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4794e+05 | 262144 | 1 | 3.505e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.951262309074624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.247662906422647, dt = 0.0012954269106861815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.2%)
patch tree reduce : 1628.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 308.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (67.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.9712e+05 | 262144 | 1 | 3.760e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.401692838748108 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 541.441717465 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0018.vtk [VTK Dump][rank=0]
- took 40.29 ms, bandwidth = 968.04 MB/s
amr::Godunov: t = 2.2489583333333334, dt = 0.0015527257008772965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1409.00 ns (0.5%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 275.37 us (93.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1799.00 ns (66.7%)
Info: cfl dt = 0.001552579957220312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6586e+05 | 262144 | 1 | 3.937e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.198398594405546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.250511059034211, dt = 0.001552579957220312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1438.00 ns (0.5%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 279.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (68.3%)
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 | 7.2995e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.563608245714436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.252063638991431, dt = 0.0015524362180172385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 297.70 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.0%)
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.9035e+05 | 262144 | 1 | 3.797e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717816010060885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.253616075209448, dt = 0.0015522948266187913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 301.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.0%)
Info: cfl dt = 0.001552155852012846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3297e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.625096204143327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.255168370036067, dt = 0.001552155852012846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1271.00 ns (0.4%)
LB compute : 300.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.5%)
Info: cfl dt = 0.001552019082912724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2756e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.508344333787715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.25672052588808, dt = 0.001552019082912724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1246.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 298.38 us (94.2%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2000.00 ns (69.6%)
Info: cfl dt = 0.001551884167468215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2713e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.497949420564769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2582725449709926, dt = 0.001551884167468215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 777.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1456.00 ns (0.4%)
LB compute : 298.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.4%)
Info: cfl dt = 0.0015517507748645841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3090e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.576774164121089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.259824429138461, dt = 0.0015517507748645841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1325.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 949.00 ns (0.3%)
LB compute : 290.67 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1986.00 ns (68.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 | 7.0196e+05 | 262144 | 1 | 3.734e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.95879553056515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2613761799133254, dt = 0.0015516185381438095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1390.00 ns (0.4%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 300.55 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.6%)
Info: cfl dt = 0.0015514871611110462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4098e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.788988846476586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2629277984514693, dt = 0.0015514871611110462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1314.00 ns (0.4%)
LB compute : 326.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (72.8%)
Info: cfl dt = 0.0015513565698946732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3103e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.575567130084941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2644792856125804, dt = 0.0015513565698946732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.1%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 1107.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1124.00 ns (0.4%)
LB compute : 288.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.4%)
Info: cfl dt = 0.0015512268440674181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3782e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.719074654105599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.266030642182475, dt = 0.0015512268440674181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1807.00 ns (0.6%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 276.42 us (93.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (72.1%)
Info: cfl dt = 0.0015510981607548089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3651e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.68979965694471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2675818690265426, dt = 0.0015510981607548089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1174.00 ns (0.3%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1314.00 ns (0.4%)
LB compute : 334.86 us (94.8%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.3%)
Info: cfl dt = 0.001550970736911927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4942e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.963459024792812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2691329671872973, dt = 0.001550970736911927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1117.00 ns (0.3%)
gen split merge : 833.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 330.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.1%)
Info: cfl dt = 0.0015508449219560783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2478e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.437267775675414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2706839379242094, dt = 0.0015508449219560783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 310.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.4%)
Info: cfl dt = 0.001550720903276394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0901e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.100319381247038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2722347828461653, dt = 0.001550720903276394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.3%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 284.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.7%)
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.8681e+05 | 262144 | 1 | 3.817e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.626256405218381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.273785503749442, dt = 0.0015505988740099161
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.3%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 1163.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1186.00 ns (0.4%)
LB compute : 284.23 us (93.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.5%)
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.3795e+05 | 262144 | 1 | 4.109e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584602455186216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2753361026234518, dt = 0.0015504789110204645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.0%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 805.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 314.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1966.00 ns (70.3%)
Info: cfl dt = 0.0015503609488322582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3197e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.585444086402077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2768865815344723, dt = 0.0015503609488322582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1749.00 ns (0.6%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 269.39 us (92.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.9%)
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 | 6.3341e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48597934804495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2784369424833044, dt = 0.0015502448463063573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1589.00 ns (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1126.00 ns (0.4%)
LB compute : 284.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (68.3%)
Info: cfl dt = 0.0015501304503963416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5285e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.027656283135947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2799871873296107, dt = 0.0015501304503963416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 1428.00 ns (0.4%)
gen split merge : 1125.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 300.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1957.00 ns (68.9%)
Info: cfl dt = 0.0015500176473088332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3167e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.57571705955664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.281537317780007, dt = 0.0015500176473088332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 1510.00 ns (0.5%)
gen split merge : 1118.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 310.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1992.00 ns (69.5%)
Info: cfl dt = 0.0015499064321359624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4019e+05 | 262144 | 1 | 4.095e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.627160042827377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.283087335427316, dt = 0.0015499064321359624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.3%)
patch tree reduce : 1373.00 ns (0.5%)
gen split merge : 1165.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 268.06 us (93.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.6%)
Info: cfl dt = 0.0015497969549200506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4000e+05 | 262144 | 1 | 4.096e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.622293876451394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2846372418594516, dt = 0.0015497969549200506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.3%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 266.45 us (93.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.7%)
Info: cfl dt = 0.001549689365920454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4022e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.754177150260603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2861870388143717, dt = 0.001549689365920454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 266.15 us (93.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (67.1%)
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.5035e+05 | 262144 | 1 | 4.031e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.840651278183172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2877367281802923, dt = 0.0015495837398648536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1651.00 ns (0.5%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 316.17 us (94.6%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.63 us (93.5%)
Info: cfl dt = 0.0015494796984960708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3348e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.608573442048419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.289286311920157, dt = 0.0015494796984960708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1230.00 ns (0.4%)
LB compute : 303.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1732.00 ns (65.5%)
Info: cfl dt = 0.0015493768340420775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3462e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.631877521667702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2908357916186532, dt = 0.0015493768340420775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1620.00 ns (0.5%)
gen split merge : 1138.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 280.22 us (93.2%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1790.00 ns (67.3%)
Info: cfl dt = 0.0015492749285960523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3022e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.537129058085233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2923851684526952, dt = 0.0015492749285960523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 272.82 us (90.0%)
LB move op cnt : 0
LB apply : 14.68 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.4%)
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 | 7.3192e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.572381339851976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2939344433812914, dt = 0.001549173997651582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1597.00 ns (0.5%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 299.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (69.5%)
Info: cfl dt = 0.0015490742281864462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2877e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.504255226671665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.295483617378943, dt = 0.0015490742281864462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1224.00 ns (0.4%)
LB compute : 280.02 us (93.8%)
LB move op cnt : 0
LB apply : 2.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.6%)
Info: cfl dt = 0.0015489759142928658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3218e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.575917934361794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2970326916071295, dt = 0.0015489759142928658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1258.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 296.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.8%)
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.8466e+05 | 262144 | 1 | 3.829e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.564155594858935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2985816675214226, dt = 0.001548879415856253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 326.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.9%)
Info: cfl dt = 0.0015487852856336695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2577e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.437546991456493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.300130546937279, dt = 0.0015487852856336695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 297.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (74.9%)
Info: cfl dt = 0.0015486948881037051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4249e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.792273940982879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3016793322229123, dt = 0.0015486948881037051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1347.00 ns (0.4%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1156.00 ns (0.4%)
LB compute : 285.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: cfl dt = 0.0015486087894969853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9104e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.697200642563594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.303228027111016, dt = 0.0015486087894969853
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.1%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 291.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1859.00 ns (68.1%)
Info: cfl dt = 0.0015485272775297698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2601e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.439952074397635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.304776635900513, dt = 0.0015485272775297698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 312.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.6%)
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.5998e+05 | 262144 | 1 | 3.972e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.035064316280605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.306325163178043, dt = 0.0015484508993169512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1439.00 ns (0.4%)
gen split merge : 1166.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 303.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1940.00 ns (67.0%)
Info: cfl dt = 0.001548379995720758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3514e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.632467299940549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.30787361407736, dt = 0.001548379995720758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 1138.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1319.00 ns (0.4%)
LB compute : 310.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (68.0%)
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 | 7.3277e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.58139454129681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3094219940730807, dt = 0.001548314434965905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 310.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (67.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 | 7.2731e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.464761216170707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3109703085080464, dt = 0.0015482538391887429
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1058.00 ns (0.4%)
LB compute : 277.03 us (93.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.4%)
Info: cfl dt = 0.0015481977178117732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3452e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.617368207265416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3125185623472353, dt = 0.0015481977178117732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.0%)
patch tree reduce : 1748.00 ns (0.5%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 313.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.7%)
Info: cfl dt = 0.0015481455441107505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3569e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.641719586318866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.314066760065047, dt = 0.0015481455441107505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1286.00 ns (0.4%)
LB compute : 328.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.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 | 7.2993e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.518658925653376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3156149056091575, dt = 0.0015480968756043404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1761.00 ns (0.5%)
gen split merge : 790.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.2%)
LB compute : 314.06 us (94.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1881.00 ns (67.6%)
Info: cfl dt = 0.0015480513948023713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3781e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.685654389443492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.317163002484762, dt = 0.0015480513948023713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.2%)
patch tree reduce : 1289.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 300.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (69.3%)
Info: cfl dt = 0.0015480088934240613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5061e+05 | 262144 | 1 | 3.492e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.957321370116352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3187110538795643, dt = 0.0015480088934240613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1506.00 ns (0.5%)
gen split merge : 1140.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 309.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: cfl dt = 0.0015479693586690233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3766e+05 | 262144 | 1 | 4.111e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.555890358041902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.320259062772988, dt = 0.0015479693586690233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1399.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 290.88 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (68.8%)
Info: cfl dt = 0.0015479328314687822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3713e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.670060753895626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.321807032131657, dt = 0.0015479328314687822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1285.00 ns (0.4%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 295.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (67.3%)
Info: cfl dt = 0.0015478993627471968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3692e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.66511038839259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.323354964963126, dt = 0.0015478993627471968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 272.54 us (89.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (67.6%)
Info: cfl dt = 0.001547869072523081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3566e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.63797286503948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3249028643258733, dt = 0.001547869072523081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 1077.00 ns (0.4%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 271.12 us (93.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.7%)
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.9237e+05 | 262144 | 1 | 3.786e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717561913016409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3264507333983966, dt = 0.0015478421381725164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1131.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 304.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: cfl dt = 0.001547818718308709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3924e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.713545963496239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.327998575536569, dt = 0.001547818718308709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 975.00 ns (0.3%)
LB compute : 303.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
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.9600e+05 | 262144 | 1 | 3.766e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.794286561312251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3295463942548778, dt = 0.001547799028329616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 286.58 us (93.9%)
LB move op cnt : 0
LB apply : 2.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1991.00 ns (66.8%)
Info: cfl dt = 0.0015477832837932884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5420e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.031149874530836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3310941932832074, dt = 0.0015477832837932884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 763.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 278.79 us (93.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.8%)
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.9823e+05 | 262144 | 1 | 3.754e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.841202710104346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.332641976567001, dt = 0.0015477716224789916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.2%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 267.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.4%)
Info: cfl dt = 0.0015477639800643094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3591e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.642064177792792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.33418974818948, dt = 0.0015477639800643094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1488.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1359.00 ns (0.4%)
LB compute : 284.02 us (93.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.6%)
Info: cfl dt = 0.0015477602476969873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1289e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.152706880032625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3357375121695445, dt = 0.0015477602476969873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1696.00 ns (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1159.00 ns (0.4%)
LB compute : 291.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1959.00 ns (70.6%)
Info: cfl dt = 0.001547760161057379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4371e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.80765763016588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3372852724172417, dt = 0.001547760161057379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1169.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 312.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.5%)
Info: cfl dt = 0.0015477634534562703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3866e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.700392801154303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.338833032578299, dt = 0.0015477634534562703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 323.17 us (94.7%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
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.8951e+05 | 262144 | 1 | 3.802e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.655684051066391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3403807960317553, dt = 0.0015477702209791462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1248.00 ns (0.4%)
gen split merge : 1226.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1304.00 ns (0.5%)
LB compute : 260.14 us (92.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (67.4%)
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 | 7.0006e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.880151850514348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3419285662527343, dt = 0.001547780471778201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 291.91 us (94.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1839.00 ns (67.4%)
Info: cfl dt = 0.0015477942221105824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3735e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.672798978193576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3434763467245125, dt = 0.0015477942221105824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1446.00 ns (0.5%)
gen split merge : 1176.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 280.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.7%)
Info: cfl dt = 0.001547811686672361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3700e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.66553420826595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3450241409466233, dt = 0.001547811686672361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1698.00 ns (0.5%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1139.00 ns (0.3%)
LB compute : 347.95 us (94.6%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.1%)
Info: cfl dt = 0.00154770648825969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4267e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78624717832467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3465719526332958, dt = 0.00154770648825969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 274.02 us (93.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1872.00 ns (68.4%)
Info: cfl dt = 0.0015475013523674923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3351e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.590460974517315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3481196591215556, dt = 0.0015475013523674923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1286.00 ns (0.4%)
gen split merge : 1120.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 290.01 us (93.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.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 | 7.3636e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.648831880532478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.349667160473923, dt = 0.0015472975696186064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.0%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 814.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 310.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1862.00 ns (66.7%)
Info: cfl dt = 0.001547095208078144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4303e+05 | 262144 | 1 | 3.528e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78859371950174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.351214458043542, dt = 0.001547095208078144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1379.00 ns (0.4%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1087.00 ns (0.3%)
LB compute : 302.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1998.00 ns (67.9%)
Info: cfl dt = 0.0015468943056792795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3450e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.605371199719396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.35276155325162, dt = 0.0015468943056792795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 1098.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 313.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.4%)
Info: cfl dt = 0.0015466948339946595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3344e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.580724105421051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3543084475572993, dt = 0.0015466948339946595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 279.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.0%)
Info: cfl dt = 0.0015464966854817593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3099e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.526600893638246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.355855142391294, dt = 0.0015464966854817593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.1%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 276.02 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.3%)
Info: cfl dt = 0.0015462996815054295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4230e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.764946013635484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.357401639076776, dt = 0.0015462996815054295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 297.48 us (93.9%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.4%)
Info: cfl dt = 0.0015461035868972303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2978e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.497015907421533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.358947938758281, dt = 0.0015461035868972303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 767.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 277.63 us (94.0%)
LB move op cnt : 0
LB apply : 2.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1880.00 ns (68.3%)
Info: cfl dt = 0.0015459081272173488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2970e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.493334522191432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.360494042345178, dt = 0.0015459081272173488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1467.00 ns (0.5%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1109.00 ns (0.4%)
LB compute : 286.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.1%)
Info: cfl dt = 0.0015457130271847568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4541e+05 | 262144 | 1 | 3.517e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.824846757728682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3620399504723957, dt = 0.0015457130271847568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 759.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 291.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1992.00 ns (70.4%)
Info: cfl dt = 0.0015455180565629946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3694e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.643114827181865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.36358566349958, dt = 0.0015455180565629946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 945.00 ns (0.3%)
LB compute : 309.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.8%)
Info: cfl dt = 0.0015453230562019308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4264e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.762040702641176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3651311815561433, dt = 0.0015453230562019308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1387.00 ns (0.5%)
LB compute : 281.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.8%)
Info: cfl dt = 0.0015451279349780855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3277e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.550692540483853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3666765046123452, dt = 0.0015451279349780855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 276.25 us (93.8%)
LB move op cnt : 0
LB apply : 2.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.8%)
Info: cfl dt = 0.001544932661027083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2601e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.405234771947937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3682216325473235, dt = 0.001544932661027083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 1097.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 320.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.1%)
Info: cfl dt = 0.0015447372567894196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2916e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.470260192850786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3697665652083506, dt = 0.0015447372567894196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1300.00 ns (0.4%)
gen split merge : 1103.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.4%)
LB compute : 304.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.5%)
Info: cfl dt = 0.0015445416715574804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4470e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.797772964769537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.37131130246514, dt = 0.0015445416715574804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 1063.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1291.00 ns (0.4%)
LB compute : 292.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.3%)
Info: cfl dt = 0.0015443459287062967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3592e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.609621872704352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3728558441366974, dt = 0.0015443459287062967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1375.00 ns (0.4%)
gen split merge : 1110.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.4%)
LB compute : 291.13 us (93.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: cfl dt = 0.001544150392494705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3307e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.547120533764314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3744001900654035, dt = 0.001544150392494705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1171.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 316.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1971.00 ns (71.1%)
Info: cfl dt = 0.0015439553368333167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3318e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.547620233570557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3759443404578984, dt = 0.0015439553368333167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 283.01 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.4%)
Info: cfl dt = 0.001543760980547729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3473e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.578526503937919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.377488295794732, dt = 0.001543760980547729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 1350.00 ns (0.4%)
gen split merge : 1166.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 306.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (74.0%)
Info: cfl dt = 0.0015435675061446208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3798e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.645392261839874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3790320567752796, dt = 0.0015435675061446208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1610.00 ns (0.5%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 316.05 us (94.5%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.0%)
Info: cfl dt = 0.00154337505637506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2932e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.459937672908714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.380575624281424, dt = 0.0006743757185758703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 818.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 310.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (74.5%)
Info: cfl dt = 0.0015433196899775087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3129e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.772578533339747 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 573.246620893 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0019.vtk [VTK Dump][rank=0]
- took 39.11 ms, bandwidth = 997.10 MB/s
amr::Godunov: t = 2.38125, dt = 0.0015433196899775087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1467.00 ns (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 874.00 ns (0.3%)
LB compute : 277.13 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.8%)
Info: cfl dt = 0.0015431178413618145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4052e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.694776419574797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3827933196899775, dt = 0.0015431178413618145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 1135.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1259.00 ns (0.4%)
LB compute : 313.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.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 | 7.3389e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.552148554729651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3843364375313394, dt = 0.0015428823614649888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 1790.00 ns (0.5%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 307.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1901.00 ns (68.9%)
Info: cfl dt = 0.0015426488912321445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3463e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.565569215618323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3858793198928043, dt = 0.0015426488912321445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 1116.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 309.03 us (94.3%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1962.00 ns (68.5%)
Info: cfl dt = 0.001542417252791636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3454e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.56123625055437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3874219687840363, dt = 0.001542417252791636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1339.00 ns (0.5%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 274.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.5%)
Info: cfl dt = 0.0015421872145210966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3317e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.529871594857017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.388964386036828, dt = 0.0015421872145210966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1517.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 308.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
Info: cfl dt = 0.0015419585672339082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3438e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.553322170833253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.390506573251349, dt = 0.0015419585672339082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1386.00 ns (0.5%)
LB compute : 278.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.3%)
Info: cfl dt = 0.0015417311823756584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3479e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.559507438779526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.392048531818583, dt = 0.0015417311823756584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 1163.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1236.00 ns (0.4%)
LB compute : 299.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (73.5%)
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 | 7.2917e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.438234061628767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3935902630009585, dt = 0.0015415049796988654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.9%)
patch tree reduce : 1537.00 ns (0.5%)
gen split merge : 1114.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 317.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.4%)
Info: cfl dt = 0.0015412799033136374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3248e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.506084381639912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3951317679806574, dt = 0.0015412799033136374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1346.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 957.00 ns (0.3%)
LB compute : 309.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.2%)
Info: cfl dt = 0.0015410559119217366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2557e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.357702932583443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.396673047883971, dt = 0.0015410559119217366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1649.00 ns (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 308.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1759.00 ns (65.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 | 7.3274e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.507120450626704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3982141037958926, dt = 0.001540832989039267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.8%)
patch tree reduce : 1568.00 ns (0.4%)
gen split merge : 1050.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.2%)
LB compute : 334.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: cfl dt = 0.0015406116567339553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3549e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.563060911354818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.399754936784932, dt = 0.0015406116567339553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1649.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 305.64 us (94.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (68.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.4415e+05 | 262144 | 1 | 4.070e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.628318774982107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.401295548441666, dt = 0.0015403919396052546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.1%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 264.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (66.0%)
Info: cfl dt = 0.0015401739535564503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4503e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.76034023469854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.402835940381271, dt = 0.0015401739535564503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.0%)
patch tree reduce : 1279.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.0%)
Info: cfl dt = 0.0015399578472977732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8662e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.522665489040211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4043761143348275, dt = 0.0015399578472977732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 289.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.5%)
Info: cfl dt = 0.001539743663133891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3194e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.479209805898808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.405916072182125, dt = 0.001539743663133891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1373.00 ns (0.5%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.4%)
LB compute : 268.65 us (93.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (68.5%)
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.8880e+05 | 262144 | 1 | 3.806e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.564881389735111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.407455815845259, dt = 0.001539531637344346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 269.73 us (93.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1706.00 ns (66.6%)
Info: cfl dt = 0.001539321880955655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9893e+05 | 262144 | 1 | 3.751e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.776962632606182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4089953474826036, dt = 0.001539321880955655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.1%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 810.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 779.00 ns (0.2%)
LB compute : 322.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.7%)
Info: cfl dt = 0.0015391148274851332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3410e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.518503264286275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4105346693635594, dt = 0.0015391148274851332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.3%)
LB compute : 305.40 us (94.3%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1772.00 ns (67.8%)
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.9726e+05 | 262144 | 1 | 3.760e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.737708061391885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4120737841910445, dt = 0.001538910574996254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 795.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 305.05 us (94.4%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1819.00 ns (67.3%)
Info: cfl dt = 0.0015387086948866755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0404e+05 | 262144 | 1 | 3.723e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.87907111361095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.413612694766041, dt = 0.0015387086948866755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.89 us (7.1%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 274.75 us (89.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1867.00 ns (63.9%)
Info: cfl dt = 0.001538508832154608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1643e+05 | 262144 | 1 | 3.659e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.138846369842035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4151514034609276, dt = 0.001538508832154608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1315.00 ns (0.5%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 267.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1795.00 ns (68.8%)
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.5721e+05 | 262144 | 1 | 3.989e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.885707782351474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4166899122930823, dt = 0.0015383106920138182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.4%)
patch tree reduce : 1343.00 ns (0.5%)
gen split merge : 1086.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 268.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
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.7056e+05 | 262144 | 1 | 3.909e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.165812232177656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.418228222985096, dt = 0.0015381141456191393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.4%)
LB compute : 268.37 us (93.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.7%)
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.9519e+05 | 262144 | 1 | 3.771e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.684377298235367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4197663371307154, dt = 0.0015379192413236976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.9%)
patch tree reduce : 1849.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 318.17 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.29 us (72.4%)
Info: cfl dt = 0.0015377261751939077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1767e+05 | 262144 | 1 | 3.653e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.157274504593973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4213042563720393, dt = 0.0015377261751939077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 819.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1003.00 ns (0.3%)
LB compute : 336.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.4%)
Info: cfl dt = 0.0015375352626941059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1199e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.035393122570264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4228419825472334, dt = 0.0015375352626941059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 318.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (67.4%)
Info: cfl dt = 0.0015373468797657834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4770e+05 | 262144 | 1 | 4.047e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.676006783832594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4243795178099274, dt = 0.0015373468797657834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.8%)
patch tree reduce : 1751.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 352.55 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (69.4%)
Info: cfl dt = 0.0015371614658333374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3079e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.428681233458168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.425916864689693, dt = 0.0015371614658333374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1681.00 ns (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1045.00 ns (0.3%)
LB compute : 288.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1926.00 ns (68.4%)
Info: cfl dt = 0.0015369792580788783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3399e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.494311095112858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4274540261555266, dt = 0.0015369792580788783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1856.00 ns (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 282.05 us (93.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1848.00 ns (70.3%)
Info: cfl dt = 0.0015368004425451811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3757e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.56809127311417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4289910054136055, dt = 0.0015368004425451811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 1762.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.2%)
LB compute : 324.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.9%)
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 | 6.8556e+05 | 262144 | 1 | 3.824e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.468501694154474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.430527805856151, dt = 0.0015366251151530403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.2%)
patch tree reduce : 1396.00 ns (0.5%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 289.09 us (93.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1876.00 ns (67.6%)
Info: cfl dt = 0.0015364534402596088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4216e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.661264523022696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.432064430971304, dt = 0.0015364534402596088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1066.00 ns (0.3%)
LB compute : 293.26 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (72.3%)
Info: cfl dt = 0.001536285483206555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1691e+05 | 262144 | 1 | 3.657e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.12684982493326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4336008844115637, dt = 0.001536285483206555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1549.00 ns (0.4%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1043.00 ns (0.3%)
LB compute : 331.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.0%)
Info: cfl dt = 0.001536121259677576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2936e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.387874104804833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4351371698947704, dt = 0.001536121259677576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1612.00 ns (0.5%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 794.00 ns (0.2%)
LB compute : 311.98 us (94.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (69.7%)
Info: cfl dt = 0.0015359607368198908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3156e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.432523802917988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.436673291154448, dt = 0.0015359607368198908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 274.97 us (93.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1989.00 ns (69.6%)
Info: cfl dt = 0.0015358037755112193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8573e+05 | 262144 | 1 | 3.823e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.464325221944705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.438209251891268, dt = 0.0015358037755112193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1575.00 ns (0.5%)
gen split merge : 1183.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 784.00 ns (0.2%)
LB compute : 315.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.4%)
Info: cfl dt = 0.0015356504717378974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2714e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.336171229171262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.439745055666779, dt = 0.0015356504717378974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.5%)
patch tree reduce : 1700.00 ns (0.6%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.4%)
LB compute : 278.57 us (93.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
Info: cfl dt = 0.0015355005530195837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4067e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.61987873868005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.441280706138517, dt = 0.0015355005530195837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.3%)
patch tree reduce : 1188.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.3%)
LB compute : 285.88 us (93.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.3%)
Info: cfl dt = 0.0015353533042214186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3983e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.600653506987152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4428162066915364, dt = 0.0015353533042214186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1440.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 306.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1877.00 ns (68.7%)
Info: cfl dt = 0.0015352082573317797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3711e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.541897384762533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.444351559995758, dt = 0.0015352082573317797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 754.00 ns (0.2%)
LB compute : 285.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1960.00 ns (70.1%)
Info: cfl dt = 0.001535065106869614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2372e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.258093943748541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.44588676825309, dt = 0.001535065106869614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1368.00 ns (0.4%)
gen split merge : 1271.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1166.00 ns (0.4%)
LB compute : 289.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.9%)
Info: cfl dt = 0.0015349235985058997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4562e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.718361706960255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4474218333599596, dt = 0.0015349235985058997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1014.00 ns (0.3%)
LB compute : 287.57 us (93.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.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.9763e+05 | 262144 | 1 | 3.758e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70538293310401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4489567569584656, dt = 0.0015347861533115828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1351.00 ns (0.4%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 287.56 us (93.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.3%)
Info: cfl dt = 0.0015346530749092632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3335e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.45689987179056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4504915431117773, dt = 0.0015346530749092632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1382.00 ns (0.5%)
gen split merge : 1150.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 274.74 us (90.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.2%)
Info: cfl dt = 0.001534524692186529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2978e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.38039795816323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4520261961866865, dt = 0.001534524692186529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1316.00 ns (0.4%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.3%)
LB compute : 275.00 us (93.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1995.00 ns (66.9%)
Info: cfl dt = 0.0015344012995661502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3317e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.450538306114234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.453560720878873, dt = 0.0015344012995661502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1229.00 ns (0.4%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 270.94 us (92.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1859.00 ns (68.5%)
Info: cfl dt = 0.0015342830036932462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2064e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.07803705966327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.455095122178439, dt = 0.0015342830036932462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1685.00 ns (0.5%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.2%)
LB compute : 309.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.7%)
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.7239e+05 | 262144 | 1 | 3.899e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.167334677696878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4566294051821322, dt = 0.0015341697297122684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.68 us (6.6%)
patch tree reduce : 1732.00 ns (0.5%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 294.81 us (89.5%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (68.3%)
Info: cfl dt = 0.0015340612687947607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1528e+05 | 262144 | 1 | 3.665e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.069868310225932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4581635749118447, dt = 0.0015340612687947607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.1%)
patch tree reduce : 1296.00 ns (0.4%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 282.92 us (93.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.4%)
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.8823e+05 | 262144 | 1 | 3.809e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.499076424823821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4596976361806395, dt = 0.0015339573253628721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 799.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1104.00 ns (0.3%)
LB compute : 321.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (69.0%)
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.9068e+05 | 262144 | 1 | 3.795e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.549603999833716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4612315935060023, dt = 0.0015338576274854876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1229.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 281.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.8%)
Info: cfl dt = 0.0015337621210216206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5995e+05 | 262144 | 1 | 3.972e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.90136685784605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.462765451133488, dt = 0.0015337621210216206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.3%)
patch tree reduce : 1246.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1120.00 ns (0.4%)
LB compute : 267.71 us (93.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1876.00 ns (69.8%)
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.8706e+05 | 262144 | 1 | 3.815e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.47147948602899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4642992132545096, dt = 0.001533670463111871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 276.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.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 | 7.2708e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31362894903399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4658328837176215, dt = 0.001533582126025953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 295.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1818.00 ns (66.8%)
Info: cfl dt = 0.001533496583768701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4217e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.630457777349164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4673664658436474, dt = 0.001533496583768701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1817.00 ns (0.6%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 281.54 us (93.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.8%)
Info: cfl dt = 0.0015334134850591694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4709e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.733204805120923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.468899962427416, dt = 0.0015334134850591694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1546.00 ns (0.5%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 813.00 ns (0.3%)
LB compute : 290.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.3%)
Info: cfl dt = 0.0015333326373369823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2889e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.349108929626473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4704333759124752, dt = 0.0015333326373369823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1308.00 ns (0.4%)
gen split merge : 1297.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1056.00 ns (0.3%)
LB compute : 285.97 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.7%)
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.9384e+05 | 262144 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.610254489185717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4719667085498123, dt = 0.0015332539953926796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 1143.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 969.00 ns (0.3%)
LB compute : 321.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1927.00 ns (68.2%)
Info: cfl dt = 0.0015331776465434418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8920e+05 | 262144 | 1 | 3.804e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.51175794768844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4734999625452048, dt = 0.0015331776465434418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1531.00 ns (0.5%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.3%)
LB compute : 300.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: cfl dt = 0.0015331039520878544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1281e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.008212127261489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4750331401917482, dt = 0.0015331039520878544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1251.00 ns (0.4%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1078.00 ns (0.3%)
LB compute : 311.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (69.5%)
Info: cfl dt = 0.00153303326818513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2964e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.361757531311385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4765662441438363, dt = 0.00153303326818513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 1679.00 ns (0.6%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 824.00 ns (0.3%)
LB compute : 278.12 us (93.7%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (68.6%)
Info: cfl dt = 0.0015329658608266101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3674e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.510674344581199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4780992774120216, dt = 0.0015329658608266101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1209.00 ns (0.4%)
LB compute : 276.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1730.00 ns (65.5%)
Info: cfl dt = 0.0015329018890725822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3214e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.413151091140797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.479632243272848, dt = 0.0015329018890725822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 289.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1990.00 ns (70.3%)
Info: cfl dt = 0.0015328415256369273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4668e+05 | 262144 | 1 | 3.511e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.718566402056322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4811651451619205, dt = 0.0015328415256369273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 975.00 ns (0.3%)
LB compute : 271.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (67.2%)
Info: cfl dt = 0.001532785022502376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3358e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.442029214211372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4826979866875574, dt = 0.001532785022502376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.2%)
patch tree reduce : 1541.00 ns (0.5%)
gen split merge : 1224.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1228.00 ns (0.4%)
LB compute : 286.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.2%)
Info: cfl dt = 0.0015327326953037087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9826e+05 | 262144 | 1 | 3.754e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.698032274692773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4842307717100596, dt = 0.0015327326953037087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1467.00 ns (0.5%)
gen split merge : 1148.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 272.65 us (93.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Info: cfl dt = 0.0015326849218365074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4943e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.774759289671344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.485763504405363, dt = 0.0015326849218365074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 283.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.2%)
Info: cfl dt = 0.001532642136982887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4664e+05 | 262144 | 1 | 3.511e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.715373858188627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4872961893272, dt = 0.001532642136982887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 275.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1870.00 ns (67.0%)
Info: cfl dt = 0.0015326047975781339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3151e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.396552839083705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4888288314641827, dt = 0.0015326047975781339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1155.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 281.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1897.00 ns (67.5%)
Info: cfl dt = 0.0015325733347290396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0600e+05 | 262144 | 1 | 3.713e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.85936565722701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.490361436261761, dt = 0.0015325733347290396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1540.00 ns (0.5%)
gen split merge : 1124.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 857.00 ns (0.3%)
LB compute : 298.41 us (94.2%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (67.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 | 7.3820e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.536650805035244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.49189400959649, dt = 0.0015325481365923957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1466.00 ns (0.5%)
gen split merge : 1160.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 282.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (69.5%)
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 | 7.5450e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.879401880064501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4934265577330823, dt = 0.001532529565498667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.4%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 1141.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 283.21 us (93.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.0%)
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 | 7.4507e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.68070751520799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.494959087298581, dt = 0.0015325178824759872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.4%)
patch tree reduce : 1379.00 ns (0.5%)
gen split merge : 1173.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 282.05 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.3%)
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 | 7.2142e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.182857627408257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.496491605181057, dt = 0.001532513212852055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1625.00 ns (0.5%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 795.00 ns (0.2%)
LB compute : 315.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.0%)
Info: cfl dt = 0.0015325155651717967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3343e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.435690562311532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.498024118393909, dt = 0.0015325155651717967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.3%)
patch tree reduce : 1162.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.3%)
LB compute : 280.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1941.00 ns (69.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 | 7.2957e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.354454253601975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.499556633959081, dt = 0.001532524869662734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1164.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 855.00 ns (0.3%)
LB compute : 293.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.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 | 7.3485e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.465731887024964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.501089158828744, dt = 0.001532541033168537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 800.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.3%)
LB compute : 285.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.2%)
Info: cfl dt = 0.0015325637530323058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3185e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.402659245815745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5026216998619124, dt = 0.0015325637530323058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1456.00 ns (0.5%)
LB compute : 275.76 us (93.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.2%)
Info: cfl dt = 0.00153259278565155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3415e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.451384935456089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5041542636149448, dt = 0.00153259278565155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1468.00 ns (0.5%)
gen split merge : 1163.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.3%)
LB compute : 287.31 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.7%)
Info: cfl dt = 0.0015326280397987293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3604e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.491469745245048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5056868564005965, dt = 0.0015326280397987293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1435.00 ns (0.5%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 743.00 ns (0.2%)
LB compute : 279.23 us (93.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (68.5%)
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.5568e+05 | 262144 | 1 | 3.998e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.800306624537548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5072194844403954, dt = 0.0015326695254708074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 1144.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 306.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (67.7%)
Info: cfl dt = 0.0015327173404116573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2190e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.19460927600225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.508752153965866, dt = 0.0015327173404116573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1168.00 ns (0.4%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 282.63 us (93.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.3%)
Info: cfl dt = 0.0015327475333932884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3439e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.457936208621623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5102848713062778, dt = 0.0015327475333932884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1514.00 ns (0.5%)
gen split merge : 1231.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 281.51 us (93.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (71.2%)
Info: cfl dt = 0.0015327449709586014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2855e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.335210158349918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5118176188396713, dt = 0.0015327449709586014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.1%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 855.00 ns (0.3%)
LB compute : 273.47 us (93.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1806.00 ns (66.3%)
Info: cfl dt = 0.0015327482518150855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2891e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.342779191702416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.51335036381063, dt = 0.0001913028560367458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1374.00 ns (0.4%)
gen split merge : 1250.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 800.00 ns (0.2%)
LB compute : 307.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1808.00 ns (66.2%)
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.8943e+05 | 262144 | 1 | 3.802e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.811235609737218 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 605.594982822 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0020.vtk [VTK Dump][rank=0]
- took 40.93 ms, bandwidth = 952.76 MB/s
amr::Godunov: t = 2.513541666666667, dt = 0.0015327616877064353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.1%)
patch tree reduce : 1388.00 ns (0.2%)
gen split merge : 877.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 572.80 us (96.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.8%)
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.2547e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.165636380964315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.515074428354373, dt = 0.0015327681115312724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 317.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (69.6%)
Info: cfl dt = 0.0015327809378905856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3352e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.440175186576457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5166071964659045, dt = 0.0015327809378905856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.0%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 809.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 321.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.3%)
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.5542e+05 | 262144 | 1 | 4.000e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.79636551577923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.518139977403795, dt = 0.0015328004064925353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.2%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 269.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1930.00 ns (68.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 | 7.1463e+05 | 262144 | 1 | 3.668e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.042850454566329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5196727778102876, dt = 0.0015326075254425548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.6%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 1149.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.2%)
LB compute : 358.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 : 2.29 us (70.8%)
Info: cfl dt = 0.0015323731348162698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8226e+05 | 262144 | 1 | 3.842e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.359652866390975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.52120538533573, dt = 0.0015323731348162698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.4%)
patch tree reduce : 1279.00 ns (0.4%)
gen split merge : 1139.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 269.76 us (93.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1759.00 ns (66.5%)
Info: cfl dt = 0.001532140402906045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5767e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.944366523737699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5227377584705466, dt = 0.001532140402906045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1349.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 270.76 us (93.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.7%)
Info: cfl dt = 0.0015319093161106911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3843e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.537167071304145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5242698988734524, dt = 0.0015319093161106911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1429.00 ns (0.5%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 288.47 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1919.00 ns (69.2%)
Info: cfl dt = 0.0015316798472978206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5048e+05 | 262144 | 1 | 3.493e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.788229434711134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5258018081895632, dt = 0.0015316798472978206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1353.00 ns (0.5%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 272.32 us (93.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (68.9%)
Info: cfl dt = 0.0015314519437618712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3372e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.433317404290706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.527333488036861, dt = 0.0015314519437618712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 298.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (69.2%)
Info: cfl dt = 0.0015312255592229373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4584e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.685933453537707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.528864939980623, dt = 0.0015312255592229373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 287.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1881.00 ns (69.8%)
Info: cfl dt = 0.0015310007067458828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3320e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.417797956834013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.530396165539846, dt = 0.0015310007067458828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 288.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1870.00 ns (67.7%)
Info: cfl dt = 0.0015307774465628857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5183e+05 | 262144 | 1 | 3.487e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.807286155438987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5319271662465916, dt = 0.0015307774465628857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1310.00 ns (0.4%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 330.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1860.00 ns (68.1%)
Info: cfl dt = 0.0015305558413498295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3456e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.442019577032793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5334579436931546, dt = 0.0015305558413498295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.1%)
patch tree reduce : 1199.00 ns (0.3%)
gen split merge : 816.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 949.00 ns (0.3%)
LB compute : 327.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1971.00 ns (69.4%)
Info: cfl dt = 0.0015303359449257712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3497e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.44831032738133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5349884995345042, dt = 0.0015303359449257712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1217.00 ns (0.4%)
LB compute : 294.72 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.5%)
Info: cfl dt = 0.0015301177976569512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3751e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.499382856637604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.53651883547943, dt = 0.0015301177976569512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 1226.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 324.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.6%)
Info: cfl dt = 0.0015299013218799022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4767e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.710768176783715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.538048953277087, dt = 0.0015299013218799022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1574.00 ns (0.5%)
gen split merge : 1213.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 311.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: cfl dt = 0.0015296862290721232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3195e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.378289411368861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.539578854598967, dt = 0.0015296862290721232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 272.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (72.5%)
Info: cfl dt = 0.0015294725530553537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3809e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.505141608928673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5411085408280387, dt = 0.0015294725530553537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 814.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1007.00 ns (0.3%)
LB compute : 279.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.3%)
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 | 7.5278e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.811434741210448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.542638013381094, dt = 0.0015292603044379277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 281.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1956.00 ns (68.2%)
Info: cfl dt = 0.0015290494743725328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3163e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.365042175927778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5441672736855323, dt = 0.0015290494743725328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 292.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.8%)
Info: cfl dt = 0.0015288400377988028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3058e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.340966609096848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.545696323159905, dt = 0.0015288400377988028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 1440.00 ns (0.4%)
gen split merge : 1137.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.2%)
LB compute : 323.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.7%)
Info: cfl dt = 0.0015286319590684726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1618e+05 | 262144 | 1 | 3.660e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.03640361902527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.547225163197704, dt = 0.0015286319590684726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1534.00 ns (0.5%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 805.00 ns (0.3%)
LB compute : 280.58 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (69.4%)
Info: cfl dt = 0.0015284252027386262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0202e+05 | 262144 | 1 | 3.734e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.737202225028762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5487537951567725, dt = 0.0015284252027386262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1674.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 809.00 ns (0.3%)
LB compute : 279.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (69.3%)
Info: cfl dt = 0.0015282198005503486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4870e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.715094527063904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5502822203595112, dt = 0.0015282198005503486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 803.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 300.98 us (94.4%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (69.4%)
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 | 7.3771e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.482247915367438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5518104401600614, dt = 0.0015280157600004503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1166.00 ns (0.4%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 277.88 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (68.0%)
Info: cfl dt = 0.001527813124098036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2916e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.30085187465788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.553338455920062, dt = 0.001527813124098036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 855.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.2%)
LB compute : 432.35 us (95.8%)
LB move op cnt : 0
LB apply : 3.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (74.5%)
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.9737e+05 | 262144 | 1 | 3.759e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.631662255228374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.55486626904416, dt = 0.001527611963613796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.2%)
patch tree reduce : 1186.00 ns (0.4%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 269.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1801.00 ns (67.3%)
Info: cfl dt = 0.001527412463549615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4200e+05 | 262144 | 1 | 3.533e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.56619044967696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5563938810077738, dt = 0.001527412463549615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 1545.00 ns (0.4%)
gen split merge : 1188.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1294.00 ns (0.4%)
LB compute : 330.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (74.1%)
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.8419e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.351388966330983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5579212934713236, dt = 0.0015272147911441956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1258.00 ns (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1115.00 ns (0.3%)
LB compute : 328.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1905.00 ns (69.2%)
Info: cfl dt = 0.0015270190816118194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3568e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.429398555495101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.559448508262468, dt = 0.0015270190816118194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1504.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 321.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.8%)
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 | 7.0368e+05 | 262144 | 1 | 3.725e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.756527014188153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5609755273440795, dt = 0.0015268254852540005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 1421.00 ns (0.4%)
gen split merge : 1171.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 341.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (73.1%)
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.9472e+05 | 262144 | 1 | 3.773e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.566636190196219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5625023528293336, dt = 0.0015266344099158027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 312.24 us (93.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
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.8028e+05 | 262144 | 1 | 3.853e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.262242750641269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5640289872392494, dt = 0.0015264462807982279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.1%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 311.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1915.00 ns (68.4%)
Info: cfl dt = 0.001526261198684421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3675e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.444122265986538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5655554335200477, dt = 0.001526261198684421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1487.00 ns (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 796.00 ns (0.2%)
LB compute : 317.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1841.00 ns (68.7%)
Info: cfl dt = 0.0015260792558820142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3034e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.307902414669714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5670816947187323, dt = 0.0015260792558820142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1470.00 ns (0.4%)
gen split merge : 1165.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 311.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.9%)
Info: cfl dt = 0.0015259005539663229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3331e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.36841943580138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5686077739746143, dt = 0.0015259005539663229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1565.00 ns (0.5%)
gen split merge : 1117.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 299.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1880.00 ns (68.3%)
Info: cfl dt = 0.0015257252094116919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2676e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.229328907886876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5701336745285808, dt = 0.0015257252094116919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 279.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1822.00 ns (67.2%)
Info: cfl dt = 0.0015255533554885663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4823e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.677366362771528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5716593997379924, dt = 0.0015255533554885663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1170.00 ns (0.4%)
gen split merge : 1072.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 278.05 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.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 | 7.3153e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.325774089260833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.573184953093481, dt = 0.0015253850692563038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1391.00 ns (0.5%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 284.40 us (93.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1975.00 ns (68.8%)
Info: cfl dt = 0.0015252203228414388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4231e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.549962758951372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5747103381627374, dt = 0.0015252203228414388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.2%)
patch tree reduce : 1162.00 ns (0.4%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 272.76 us (93.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (70.2%)
Info: cfl dt = 0.001525059373759957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3676e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.432042681138292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5762355584855787, dt = 0.001525059373759957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1178.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 277.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1898.00 ns (69.4%)
Info: cfl dt = 0.0015249026791034407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4508e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.604516570336294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.577760617859339, dt = 0.0015249026791034407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1316.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1069.00 ns (0.4%)
LB compute : 279.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: cfl dt = 0.0015247507240520512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3487e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.389252376249091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.579285520538442, dt = 0.0015247507240520512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.1%)
patch tree reduce : 1581.00 ns (0.5%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 301.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Info: cfl dt = 0.0015246038706734379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4567e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.613708159055607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5808102712624943, dt = 0.0015246038706734379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.2%)
patch tree reduce : 1204.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 273.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1958.00 ns (68.0%)
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.7787e+05 | 262144 | 1 | 3.867e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.192761434453937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5823348751331676, dt = 0.0015244623324785552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 853.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 276.88 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.2%)
Info: cfl dt = 0.0015243261665922774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3859e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.462538468629287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.583859337465646, dt = 0.0015243261665922774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1237.00 ns (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 294.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.0%)
Info: cfl dt = 0.0015241953159966463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2986e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.278500636394748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5853836636322383, dt = 0.0015241953159966463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1351.00 ns (0.5%)
gen split merge : 1075.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 274.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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 | 7.1245e+05 | 262144 | 1 | 3.679e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.912697331134552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.586907858948235, dt = 0.001524069582638697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.0%)
patch tree reduce : 1545.00 ns (0.5%)
gen split merge : 1105.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1270.00 ns (0.4%)
LB compute : 315.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.7%)
Info: cfl dt = 0.0015239486956632872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2909e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.259788577136572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5884319285308734, dt = 0.0015239486956632872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 835.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 316.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.6%)
Info: cfl dt = 0.001523832288821232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3000e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.27770051724191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5899558772265365, dt = 0.001523832288821232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1599.00 ns (0.5%)
gen split merge : 1153.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.4%)
LB compute : 294.70 us (93.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.0%)
Info: cfl dt = 0.0015237198372224086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3003e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.277048253467584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5914797095153577, dt = 0.0015237198372224086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1626.00 ns (0.5%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 317.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.6%)
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.1366e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.840926473711574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.59300342935258, dt = 0.0015236112321207937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1787.00 ns (0.5%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 313.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (71.7%)
Info: cfl dt = 0.0015235063595674956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2366e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.141548472056547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5945270405847007, dt = 0.0015235063595674956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 311.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (68.1%)
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.1733e+05 | 262144 | 1 | 4.246e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.915943815344324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.596050546944268, dt = 0.0015234051011667478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (1.9%)
patch tree reduce : 1310.00 ns (0.4%)
gen split merge : 1168.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 814.00 ns (0.2%)
LB compute : 351.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.8%)
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.1956e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.96168400220147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5975739520454346, dt = 0.0015233073534648195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.5%)
patch tree reduce : 1210.00 ns (0.3%)
gen split merge : 843.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.2%)
LB compute : 382.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.4%)
Info: cfl dt = 0.0015232130432429887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3080e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.287998898156253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5990972593988992, dt = 0.0015232130432429887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1236.00 ns (0.4%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.4%)
LB compute : 310.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.7%)
Info: cfl dt = 0.0015231221306644758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0101e+05 | 262144 | 1 | 3.740e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.663865050946125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6006204724421425, dt = 0.0015231221306644758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1326.00 ns (0.4%)
gen split merge : 825.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 289.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1972.00 ns (67.4%)
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.5390e+05 | 262144 | 1 | 4.009e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.677479198137222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.602143594572807, dt = 0.0015230346010244166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1545.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 763.00 ns (0.2%)
LB compute : 302.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.6%)
Info: cfl dt = 0.0015229504570997351 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0766e+05 | 262144 | 1 | 3.704e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.801271778207143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6036666291738313, dt = 0.0015229504570997351
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.4%)
patch tree reduce : 1265.00 ns (0.4%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 299.77 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: cfl dt = 0.0015228696776598937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3315e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.333505649005364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.605189579630931, dt = 0.0015228696776598937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1540.00 ns (0.5%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 809.00 ns (0.3%)
LB compute : 297.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (73.5%)
Info: cfl dt = 0.0015227922249294278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2954e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.257126652117048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6067124493085907, dt = 0.0015227922249294278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 285.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.7%)
Info: cfl dt = 0.0015227180616253517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3891e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.452435143531464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.60823524153352, dt = 0.0015227180616253517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 303.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.9%)
Info: cfl dt = 0.0015226471723875984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1905e+05 | 262144 | 1 | 3.646e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.036203333448727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6097579595951452, dt = 0.0015226471723875984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 766.00 ns (0.3%)
LB compute : 282.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.4%)
Info: cfl dt = 0.0015225795784276472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3723e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.41582559430294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.611280606767533, dt = 0.0015225795784276472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 304.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1877.00 ns (66.5%)
Info: cfl dt = 0.0015225153440370605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2685e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.198072094414842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6128031863459604, dt = 0.0015225153440370605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1389.00 ns (0.4%)
gen split merge : 1138.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.3%)
LB compute : 305.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1766.00 ns (67.9%)
Info: cfl dt = 0.0015224548189151203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1452e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.939658883062222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6143257016899977, dt = 0.0015224548189151203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1524.00 ns (0.5%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1138.00 ns (0.4%)
LB compute : 281.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Info: cfl dt = 0.001522398363792358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3037e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.27032425225001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6158481565089127, dt = 0.001522398363792358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1567.00 ns (0.5%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 312.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.3%)
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.6150e+05 | 262144 | 1 | 3.963e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.829938722625712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.617370554872705, dt = 0.0015223461999149211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1308.00 ns (0.5%)
gen split merge : 1170.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 269.94 us (93.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1889.00 ns (67.9%)
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.5779e+05 | 262144 | 1 | 3.985e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.751964858214551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.61889290107262, dt = 0.001522298405641283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 1129.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.3%)
LB compute : 273.80 us (93.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.9%)
Info: cfl dt = 0.0015222549829826063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2994e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.259891332870401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.620415199478261, dt = 0.0015222549829826063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1027.00 ns (0.3%)
LB compute : 323.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.5%)
Info: cfl dt = 0.0015222158879719609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4840e+05 | 262144 | 1 | 3.503e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.645384824966763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6219374544612437, dt = 0.0015222158879719609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 1169.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1319.00 ns (0.4%)
LB compute : 283.45 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (67.9%)
Info: cfl dt = 0.0015221810130861245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3123e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.285887869286647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6234596703492157, dt = 0.0015221810130861245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1154.00 ns (0.4%)
gen split merge : 785.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 306.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.0%)
Info: cfl dt = 0.0015221505540052682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4104e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.490746880771832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.624981851362302, dt = 0.0015221505540052682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1225.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 303.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1925.00 ns (68.1%)
Info: cfl dt = 0.0015221246909691835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3618e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.388743003872825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6265040019163073, dt = 0.0015221246909691835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1488.00 ns (0.4%)
gen split merge : 1173.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 321.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (73.1%)
Info: cfl dt = 0.001522103550366825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3237e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.308944495910579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6280261266072764, dt = 0.001522103550366825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.8%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 1163.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 332.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.8%)
Info: cfl dt = 0.0015220635640851206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4406e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.552921233995637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6295482301576434, dt = 0.0015220635640851206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1068.00 ns (0.3%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 943.00 ns (0.3%)
LB compute : 304.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
Info: cfl dt = 0.001521992938839611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3186e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.297593712969514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6310702937217285, dt = 0.001521992938839611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1150.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 303.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1771.00 ns (66.8%)
Info: cfl dt = 0.0015219275259207915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4259e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.521159701331976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.632592286660568, dt = 0.0015219275259207915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 788.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1034.00 ns (0.3%)
LB compute : 336.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1805.00 ns (67.7%)
Info: cfl dt = 0.0015218672236035256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3279e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.315587843883772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.634114214186489, dt = 0.0015218672236035256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 1627.00 ns (0.5%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 281.31 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (67.7%)
Info: cfl dt = 0.0015218118861542072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4949e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.664009780592473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6356360814100923, dt = 0.0015218118861542072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.3%)
patch tree reduce : 1399.00 ns (0.5%)
gen split merge : 1099.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 279.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.7%)
Info: cfl dt = 0.0015217613550831813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0955e+05 | 262144 | 1 | 3.694e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82891604175272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6371578932962465, dt = 0.0015217613550831813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.4%)
patch tree reduce : 1334.00 ns (0.5%)
gen split merge : 1175.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.3%)
LB compute : 276.14 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1834.00 ns (67.1%)
Info: cfl dt = 0.0015217154035062754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2015e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.049795372878206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.63867965465133, dt = 0.0015217154035062754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1449.00 ns (0.5%)
gen split merge : 1211.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1270.00 ns (0.4%)
LB compute : 280.78 us (89.7%)
LB move op cnt : 0
LB apply : 14.42 us (4.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1861.00 ns (68.9%)
Info: cfl dt = 0.0015216737413997524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2517e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.154384322625367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.640201370054836, dt = 0.0015216737413997524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1090.00 ns (0.3%)
LB compute : 307.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.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 | 7.3120e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.279913830609974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.641723043796236, dt = 0.0015216360470863071
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.1%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 1008.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 278.49 us (93.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.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 | 7.2841e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.221116816182848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6432446798433222, dt = 0.0015216019955173162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 979.00 ns (0.3%)
LB compute : 308.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.0%)
Info: cfl dt = 0.0015215713025572438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4682e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.605480824992677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6447662818388396, dt = 0.0010670514944939313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 1421.00 ns (0.4%)
gen split merge : 1127.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1259.00 ns (0.4%)
LB compute : 333.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.3%)
Info: cfl dt = 0.0015215627922797817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3033e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.70202470819272 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 637.8332733120001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0021.vtk [VTK Dump][rank=0]
- took 39.44 ms, bandwidth = 988.92 MB/s
amr::Godunov: t = 2.6458333333333335, dt = 0.0015215627922797817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 1361.00 ns (0.4%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1298.00 ns (0.4%)
LB compute : 317.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (66.9%)
Info: cfl dt = 0.0015215367630654838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3694e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.398708212085662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6473548961256133, dt = 0.0015215367630654838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1560.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1025.00 ns (0.3%)
LB compute : 307.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1846.00 ns (68.5%)
Info: cfl dt = 0.0015215134756096653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4229e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.510203853067367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6488764328886787, dt = 0.0015215134756096653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 1155.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 311.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (72.9%)
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.9517e+05 | 262144 | 1 | 3.771e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.52535844789992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.650397946364288, dt = 0.001521493007339403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.3%)
patch tree reduce : 1237.00 ns (0.4%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 278.22 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1888.00 ns (67.3%)
Info: cfl dt = 0.001521475702781611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3081e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.269952633048973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6519194393716274, dt = 0.001521475702781611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 1398.00 ns (0.4%)
gen split merge : 1223.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1261.00 ns (0.4%)
LB compute : 292.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (68.1%)
Info: cfl dt = 0.0015214620352323686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3525e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.362559357923168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.653440915074409, dt = 0.0015214620352323686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.2%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 271.17 us (93.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (67.3%)
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.2339e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.02524043209931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.654962377109641, dt = 0.0015214526165728082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.7%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 866.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 764.00 ns (0.2%)
LB compute : 374.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.4%)
Info: cfl dt = 0.0015214483506929108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4650e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.597325653549651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.656483829726214, dt = 0.0015214483506929108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1840.00 ns (0.6%)
gen split merge : 907.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 304.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1972.00 ns (67.8%)
Info: cfl dt = 0.0015214495068474087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3992e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.459878196486036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.658005278076907, dt = 0.0015214495068474087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 888.00 ns (0.3%)
LB compute : 320.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.5%)
Info: cfl dt = 0.0015214547605531907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4068e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.475687707274465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6595267275837546, dt = 0.0015214547605531907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 295.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1840.00 ns (67.1%)
Info: cfl dt = 0.0015214652338746918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2338e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.114279684028613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6610481823443077, dt = 0.0015214652338746918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1234.00 ns (0.4%)
gen split merge : 797.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 883.00 ns (0.3%)
LB compute : 320.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (68.1%)
Info: cfl dt = 0.0015214814636623894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9344e+05 | 262144 | 1 | 3.780e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.488763669064173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6625696475781826, dt = 0.0015214814636623894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.1%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 783.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 291.62 us (94.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1835.00 ns (68.8%)
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.9091e+05 | 262144 | 1 | 3.794e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.436079534159484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.664091129041845, dt = 0.0015215037035484235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1386.00 ns (0.5%)
gen split merge : 1077.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 274.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1940.00 ns (67.6%)
Info: cfl dt = 0.0015215320327723965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3547e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.367380839757297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6656126327453937, dt = 0.0015215320327723965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1554.00 ns (0.5%)
gen split merge : 1156.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 945.00 ns (0.3%)
LB compute : 319.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.4%)
Info: cfl dt = 0.0015215664332649832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3676e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.394714205386718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.667134164778166, dt = 0.0015215664332649832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1395.00 ns (0.4%)
gen split merge : 1064.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 318.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.1%)
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.4500e+05 | 262144 | 1 | 4.064e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.477554834512034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.668655731211431, dt = 0.0015216068296643461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 297.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.6%)
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 | 5.9905e+05 | 262144 | 1 | 4.376e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.517740302605686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6701773380410954, dt = 0.0015216531205595398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 290.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.1196e+05 | 262144 | 1 | 4.284e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.788008710579819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.671698991161655, dt = 0.0015217051989234796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1098.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 289.94 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1718.00 ns (65.5%)
Info: cfl dt = 0.0015217629740179957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1718e+05 | 262144 | 1 | 4.247e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.897451924327916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6732206963605787, dt = 0.0015217629740179957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1197.00 ns (0.3%)
LB compute : 325.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1785.00 ns (67.1%)
Info: cfl dt = 0.001521826407482079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2992e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.254078683234493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6747424593345968, dt = 0.001521826407482079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 746.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 318.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1986.00 ns (69.2%)
Info: cfl dt = 0.001521895515919894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2347e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.11990138834004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6762642857420786, dt = 0.001521895515919894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.2%)
patch tree reduce : 1178.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 270.60 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (67.8%)
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.4233e+05 | 262144 | 1 | 4.081e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.424685066859306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6777861812579986, dt = 0.0015219704157906422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 864.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 326.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (73.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 | 7.3275e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.315269054430885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6793081516737893, dt = 0.0015220513070769324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.3%)
LB compute : 311.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.7%)
Info: cfl dt = 0.0015218822829526104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4228e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.515205918232429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.680830202980866, dt = 0.0015218822829526104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1696.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 797.00 ns (0.3%)
LB compute : 296.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1985.00 ns (70.7%)
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.4467e+05 | 262144 | 1 | 4.066e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.473447943577549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.682352085263819, dt = 0.0015216828730204412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1234.00 ns (0.3%)
gen split merge : 855.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.2%)
LB compute : 341.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.7%)
Info: cfl dt = 0.0015214871711774092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3444e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.347712788521392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.683873768136839, dt = 0.0015214871711774092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.3%)
patch tree reduce : 1304.00 ns (0.4%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 292.37 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.2%)
Info: cfl dt = 0.0015212952824021552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4301e+05 | 262144 | 1 | 3.528e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.524683371233436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6853952553080167, dt = 0.0015212952824021552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.3%)
patch tree reduce : 1385.00 ns (0.5%)
gen split merge : 1174.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.3%)
LB compute : 284.83 us (93.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (72.4%)
Info: cfl dt = 0.0015211072425463845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3761e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.410027773909503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6869165505904187, dt = 0.0015211072425463845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1525.00 ns (0.5%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 273.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1947.00 ns (70.0%)
Info: cfl dt = 0.0015209230906906208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3384e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.329419632874876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.688437657832965, dt = 0.0015209230906906208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 275.68 us (93.8%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1916.00 ns (69.8%)
Info: cfl dt = 0.0015207427383924386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2751e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.195316513365704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6899585809236557, dt = 0.0015207427383924386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 275.44 us (90.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.1%)
Info: cfl dt = 0.0015205660194272331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3508e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.35165757139947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.691479323662048, dt = 0.0015205660194272331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1207.00 ns (0.4%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 302.57 us (94.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.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.8579e+05 | 262144 | 1 | 3.822e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.320585815654784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.692999889681475, dt = 0.0015203927357172946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 309.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (70.1%)
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 | 7.3981e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.44685345657173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6945202824171925, dt = 0.0015202226929284849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.9%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 317.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: cfl dt = 0.001520055731103431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3993e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.44760370375701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.696040505110121, dt = 0.001520055731103431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 271.31 us (93.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (70.6%)
Info: cfl dt = 0.0015198917416670134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5449e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.749848547739912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6975605608412243, dt = 0.0015198917416670134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1301.00 ns (0.4%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 314.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.9%)
Info: cfl dt = 0.001519730645435698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0188e+05 | 262144 | 1 | 3.735e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.649998730353449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6990804525828915, dt = 0.001519730645435698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.0%)
patch tree reduce : 1375.00 ns (0.4%)
gen split merge : 1167.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 314.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1900.00 ns (69.5%)
Info: cfl dt = 0.0015195724187671324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2929e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.220602728377965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7006001832283273, dt = 0.0015195724187671324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.1%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 313.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.2%)
Info: cfl dt = 0.0015194170813446967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5017e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.654633417481234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7021197556470944, dt = 0.0015194170813446967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1717.00 ns (0.5%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.2%)
LB compute : 313.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.3%)
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.9938e+05 | 262144 | 1 | 3.748e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.593206166167262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.703639172728439, dt = 0.0015192646876158293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1180.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 292.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.1%)
Info: cfl dt = 0.0015191153009374756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2974e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.225318548891947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.705158437416055, dt = 0.0015191153009374756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1674.00 ns (0.5%)
gen split merge : 1205.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1178.00 ns (0.4%)
LB compute : 300.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1719.00 ns (65.8%)
Info: cfl dt = 0.0015189689424582535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3150e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.260435087943334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.706677552716992, dt = 0.0015189689424582535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.8%)
patch tree reduce : 1257.00 ns (0.3%)
gen split merge : 845.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.2%)
LB compute : 354.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.9%)
Info: cfl dt = 0.0015188256124191658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2609e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.146039044923034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7081965216594504, dt = 0.0015188256124191658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 279.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (68.2%)
Info: cfl dt = 0.001518685341372921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2117e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.042167057352422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7097153472718696, dt = 0.001518685341372921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1429.00 ns (0.5%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 955.00 ns (0.3%)
LB compute : 297.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1938.00 ns (68.6%)
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.2925e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.123628722405167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7112340326132425, dt = 0.0015185482927300635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 314.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1882.00 ns (68.3%)
Info: cfl dt = 0.0015184146985223012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2806e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.182983765997795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7127525809059727, dt = 0.0015184146985223012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 1544.00 ns (0.5%)
gen split merge : 1209.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 789.00 ns (0.2%)
LB compute : 312.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.7%)
Info: cfl dt = 0.0015182847574566453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4316e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.496475741918116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.714270995604495, dt = 0.0015182847574566453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1509.00 ns (0.5%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.3%)
LB compute : 277.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (74.4%)
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 | 7.3836e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.395079348890008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7157892803619514, dt = 0.0015181586388005445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1549.00 ns (0.5%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.3%)
LB compute : 285.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.3%)
Info: cfl dt = 0.0015180364524598566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3704e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.366395983647982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.717307439000752, dt = 0.0015180364524598566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 796.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 289.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (73.1%)
Info: cfl dt = 0.0015179182188294793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2942e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.206343760356102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.718825475453212, dt = 0.0015179182188294793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.2%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 272.49 us (93.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1650.00 ns (64.3%)
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.4578e+05 | 262144 | 1 | 4.059e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.461594830488112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.720343393672042, dt = 0.001517803934898775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 1211.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1205.00 ns (0.4%)
LB compute : 289.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.0%)
Info: cfl dt = 0.0015176935434418695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3395e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.298446837212168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7218611976069407, dt = 0.0015176935434418695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 843.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 299.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1967.00 ns (70.6%)
Info: cfl dt = 0.001517586901105193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3079e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231360639969454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7233788911503827, dt = 0.001517586901105193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1754.00 ns (0.6%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.4%)
LB compute : 271.60 us (93.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1885.00 ns (69.3%)
Info: cfl dt = 0.0015174838995752856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2993e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.212319460994635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.724896478051488, dt = 0.0015174838995752856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1227.00 ns (0.4%)
gen split merge : 826.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1068.00 ns (0.3%)
LB compute : 289.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
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 | 7.4319e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.487789749685371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7264139619510632, dt = 0.0015173844601152004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.2%)
patch tree reduce : 1339.00 ns (0.4%)
gen split merge : 1278.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 292.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1968.00 ns (69.0%)
Info: cfl dt = 0.0015172885253066906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9443e+05 | 262144 | 1 | 3.775e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.470507206227452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7279313464111783, dt = 0.0015172885253066906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.0%)
patch tree reduce : 1490.00 ns (0.5%)
gen split merge : 1138.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 306.08 us (94.2%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.8%)
Info: cfl dt = 0.0015171960734796377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3248e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.262453086190321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.729448634936485, dt = 0.0015171960734796377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1214.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 294.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (73.6%)
Info: cfl dt = 0.001517107295658014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4673e+05 | 262144 | 1 | 3.511e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.55844522012795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7309658310099643, dt = 0.001517107295658014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 272.89 us (93.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (68.9%)
Info: cfl dt = 0.0015170224528540228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3649e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.34419852229021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.732482938305622, dt = 0.0015170224528540228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1621.00 ns (0.5%)
gen split merge : 1155.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 819.00 ns (0.3%)
LB compute : 303.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (70.2%)
Info: cfl dt = 0.0015169416171948854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3103e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.229687064888259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.733999960758476, dt = 0.0015169416171948854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1171.00 ns (0.4%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 300.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1780.00 ns (68.3%)
Info: cfl dt = 0.0015168647812692866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0722e+05 | 262144 | 1 | 3.707e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732723275785895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.735516902375671, dt = 0.0015168647812692866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 1815.00 ns (0.6%)
gen split merge : 899.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 904.00 ns (0.3%)
LB compute : 302.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1810.00 ns (67.3%)
Info: cfl dt = 0.0015167919479624732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2748e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.154087050245323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7370337671569405, dt = 0.0015167919479624732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 807.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 314.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1725.00 ns (64.4%)
Info: cfl dt = 0.0015167231894657924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2934e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.192215038717038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.738550559104903, dt = 0.0015167231894657924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1564.00 ns (0.5%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 313.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1970.00 ns (68.4%)
Info: cfl dt = 0.0015166586748958596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5154e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.653894965582074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7400672822943686, dt = 0.0015166586748958596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 316.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.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.2885e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.097808270602545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7415839409692646, dt = 0.0015165986996247278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.1%)
patch tree reduce : 1381.00 ns (0.4%)
gen split merge : 849.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 324.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1891.00 ns (66.0%)
Info: cfl dt = 0.0015165437461643627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2704e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.142211368942936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7431005396688892, dt = 0.0015165437461643627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.2%)
patch tree reduce : 1210.00 ns (0.4%)
gen split merge : 1284.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1185.00 ns (0.4%)
LB compute : 310.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (69.4%)
Info: cfl dt = 0.0015164942672715618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6108e+05 | 262144 | 1 | 3.965e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768013084626041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7446170834150534, dt = 0.0015164942672715618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 1147.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 284.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1969.00 ns (69.6%)
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.5001e+05 | 262144 | 1 | 4.033e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.536998332019039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.746133577682325, dt = 0.001516450595324313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.2%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 1159.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.2%)
LB compute : 532.22 us (96.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.4%)
Info: cfl dt = 0.0015164129746310182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3291e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.263142527913132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7476500282776493, dt = 0.0015164129746310182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.3%)
patch tree reduce : 1189.00 ns (0.2%)
gen split merge : 845.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.2%)
LB compute : 527.94 us (96.2%)
LB move op cnt : 0
LB apply : 4.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.0%)
Info: cfl dt = 0.0015163815239267013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2730e+05 | 262144 | 1 | 3.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.14585870794517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7491664412522803, dt = 0.0015163815239267013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.0%)
patch tree reduce : 1684.00 ns (0.5%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 317.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (67.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 | 7.2833e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.167066047089772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.750682822776207, dt = 0.0015163562176670798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1544.00 ns (0.5%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1070.00 ns (0.4%)
LB compute : 277.06 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1825.00 ns (66.7%)
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.7257e+05 | 262144 | 1 | 3.898e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.005549569341461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.752199178993874, dt = 0.0015163369294719964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 964.00 ns (0.3%)
LB compute : 307.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (14.0%)
Info: cfl dt = 0.0015163234734648816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3637e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.33402786705812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.753715515923346, dt = 0.0015163234734648816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1511.00 ns (0.5%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 314.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (69.2%)
Info: cfl dt = 0.0015163158747084737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2991e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.199261925171596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.755231839396811, dt = 0.0015163158747084737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 1047.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1256.00 ns (0.4%)
LB compute : 315.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1870.00 ns (68.6%)
Info: cfl dt = 0.001516313546854961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2870e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.17402630042095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7567481552715196, dt = 0.001516313546854961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 272.46 us (93.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (67.7%)
Info: cfl dt = 0.001516316003748054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3486e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.302218651564733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7582644688183744, dt = 0.001516316003748054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1140.00 ns (0.3%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 309.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1939.00 ns (69.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 | 7.3465e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.297999065925232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7597807848221225, dt = 0.0015162903063132634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1600.00 ns (0.5%)
gen split merge : 836.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 818.00 ns (0.2%)
LB compute : 317.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.4%)
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.5624e+05 | 262144 | 1 | 3.995e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.665037463481758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.761297075128436, dt = 0.0015162647996006403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1270.00 ns (0.4%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 296.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1945.00 ns (68.7%)
Info: cfl dt = 0.0015162427419989411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3630e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.331791126542797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7628133399280363, dt = 0.0015162427419989411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 827.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.3%)
LB compute : 314.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.3%)
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.6870e+05 | 262144 | 1 | 3.920e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.92387964441363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7643295826700354, dt = 0.001516220003079443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 1076.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 326.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.6%)
Info: cfl dt = 0.001516143584971755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2877e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.174470486991972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7658458026731148, dt = 0.001516143584971755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1269.00 ns (0.4%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 307.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.8%)
Info: cfl dt = 0.0015160710512218732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4813e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.57689371564916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7673619462580863, dt = 0.0015160710512218732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 1378.00 ns (0.4%)
gen split merge : 1181.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 288.34 us (93.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.6%)
Info: cfl dt = 0.0015160025130583185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3376e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.27683533913781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.768878017309308, dt = 0.0015160025130583185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.9%)
patch tree reduce : 1215.00 ns (0.4%)
gen split merge : 819.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 315.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.1%)
Info: cfl dt = 0.0015159376219887508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2787e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.153627563679668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7703940198223664, dt = 0.0015159376219887508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1206.00 ns (0.3%)
gen split merge : 845.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 889.00 ns (0.3%)
LB compute : 326.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.3%)
Info: cfl dt = 0.0015158760882831095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3812e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.366416702440105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7719099574443553, dt = 0.0015158760882831095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1186.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1119.00 ns (0.4%)
LB compute : 295.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (69.7%)
Info: cfl dt = 0.0015158177607736908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0147e+05 | 262144 | 1 | 3.737e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602855447015823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7734258335326385, dt = 0.0015158177607736908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1085.00 ns (0.3%)
LB compute : 295.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1749.00 ns (66.4%)
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.7260e+05 | 262144 | 1 | 3.897e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.001171186230911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.774941651293412, dt = 0.001515762492856966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1175.00 ns (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 890.00 ns (0.3%)
LB compute : 301.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (69.2%)
Info: cfl dt = 0.001515710174146698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4423e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.491672596315212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.776457413786269, dt = 0.001515710174146698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1309.00 ns (0.4%)
gen split merge : 1139.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 287.84 us (93.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (74.1%)
Info: cfl dt = 0.0015156607638206285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3532e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.305857628592147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7779731239604155, dt = 0.0001518760395846641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.5%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 830.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.2%)
LB compute : 407.19 us (95.5%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.3%)
Info: cfl dt = 0.001515654798420528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3533e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5336866518459948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 670.7767943670001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0022.vtk [VTK Dump][rank=0]
- took 39.66 ms, bandwidth = 983.43 MB/s
amr::Godunov: t = 2.778125, dt = 0.001515654798420528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1420.00 ns (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.3%)
LB compute : 278.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.5%)
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.6277e+05 | 262144 | 1 | 3.955e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.795086454092154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7796406547984205, dt = 0.001515612485924598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1334.00 ns (0.4%)
gen split merge : 803.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 963.00 ns (0.3%)
LB compute : 334.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.6%)
Info: cfl dt = 0.0015155710893806562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3285e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.253289585009957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.781156267284345, dt = 0.0015155710893806562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1346.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 309.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.1%)
Info: cfl dt = 0.0015155316666558966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3437e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.284654703412246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7826718383737257, dt = 0.0015155316666558966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1287.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 294.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (71.7%)
Info: cfl dt = 0.0015154954372760033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3472e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.291575092351394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7841873700403816, dt = 0.0015154954372760033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1224.00 ns (0.4%)
gen split merge : 798.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 313.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (69.1%)
Info: cfl dt = 0.0015154634694379218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4625e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.531111862185325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7857028654776577, dt = 0.0015154634694379218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1667.00 ns (0.5%)
gen split merge : 1130.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 304.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1969.00 ns (70.0%)
Info: cfl dt = 0.0015154364686595725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1285e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8356869180846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7872183289470955, dt = 0.0015154364686595725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 303.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.1%)
Info: cfl dt = 0.0015154172553927796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3363e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.267812805808147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.788733765415755, dt = 0.0015154172553927796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.9%)
patch tree reduce : 1531.00 ns (0.5%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 888.00 ns (0.3%)
LB compute : 311.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1811.00 ns (67.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.3528e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.220967599273042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7902491826711477, dt = 0.001515406187162554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1307.00 ns (0.4%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 949.00 ns (0.3%)
LB compute : 306.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1755.00 ns (67.3%)
Info: cfl dt = 0.0015154020704280897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0159e+05 | 262144 | 1 | 3.736e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.600721458565486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7917645888583102, dt = 0.0015154020704280897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.0%)
patch tree reduce : 1861.00 ns (0.6%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 293.30 us (93.9%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1746.00 ns (65.6%)
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.9524e+05 | 262144 | 1 | 3.771e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.468484381816515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7932799909287382, dt = 0.0015154044362668028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1299.00 ns (0.4%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 295.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1715.00 ns (12.7%)
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.8393e+05 | 262144 | 1 | 3.833e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.233233579429655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.794795395365005, dt = 0.0015154131569589267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1181.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 303.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.6%)
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.8728e+05 | 262144 | 1 | 3.814e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.303025357478633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7963108085219637, dt = 0.0015154282829658314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 284.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.3%)
Info: cfl dt = 0.0015154498256837413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4059e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.412646042783223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7978262368049296, dt = 0.0015154498256837413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1297.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 296.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.9%)
Info: cfl dt = 0.0015154776859089049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0312e+05 | 262144 | 1 | 3.728e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.632922254072245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7993416866306133, dt = 0.0015154776859089049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.0%)
patch tree reduce : 1737.00 ns (0.5%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1083.00 ns (0.3%)
LB compute : 306.64 us (93.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1960.00 ns (70.1%)
Info: cfl dt = 0.0015155117294608509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4729e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.552627411247368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8008571643165223, dt = 0.0015155117294608509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1367.00 ns (0.5%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 956.00 ns (0.3%)
LB compute : 275.47 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (68.5%)
Info: cfl dt = 0.0015155517915075266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3702e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.339112893765867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8023726760459833, dt = 0.0015155517915075266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1184.00 ns (0.4%)
gen split merge : 806.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.3%)
LB compute : 314.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1698.00 ns (66.5%)
Info: cfl dt = 0.0015155976892007844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3687e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.33636320233092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.803888227837491, dt = 0.0015155976892007844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1384.00 ns (0.5%)
gen split merge : 1216.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1275.00 ns (0.4%)
LB compute : 273.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1907.00 ns (69.1%)
Info: cfl dt = 0.0015156492588003058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3887e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.378559151376814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8054038255266915, dt = 0.0015156492588003058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 309.36 us (94.5%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1989.00 ns (67.5%)
Info: cfl dt = 0.0015157064004577725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3111e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.217500774462106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.806919474785492, dt = 0.0015157064004577725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.3%)
patch tree reduce : 1220.00 ns (0.4%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 301.66 us (93.9%)
LB move op cnt : 0
LB apply : 2.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.08 us (92.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 | 7.3441e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.286729954661935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8084351811859496, dt = 0.0015157690833342307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 798.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 314.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.4%)
Info: cfl dt = 0.0015158373365686067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3405e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.279952909661514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.809950950269284, dt = 0.0015158373365686067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 283.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1919.00 ns (68.9%)
Info: cfl dt = 0.0015159112432552087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3468e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.293748658341388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8114667876058523, dt = 0.0015159112432552087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1386.00 ns (0.4%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1130.00 ns (0.3%)
LB compute : 309.63 us (93.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.00 ns (68.7%)
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.5271e+05 | 262144 | 1 | 4.016e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.587952303471912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8129826988491073, dt = 0.0015159909236507922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 313.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.7%)
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.1135e+05 | 262144 | 1 | 4.288e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.727695904360893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.814498689772758, dt = 0.001516076527068507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.6%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 855.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.2%)
LB compute : 350.42 us (94.8%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1840.00 ns (68.2%)
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.0866e+05 | 262144 | 1 | 4.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.672317462210804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8160147662998263, dt = 0.0015161682837895984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 945.00 ns (0.3%)
LB compute : 321.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1752.00 ns (67.0%)
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 | 5.9952e+05 | 262144 | 1 | 4.373e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.48277713095864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.817530934583616, dt = 0.0015162665352822283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.02 us (5.5%)
patch tree reduce : 1354.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 966.00 ns (0.3%)
LB compute : 314.20 us (90.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1915.00 ns (69.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 | 7.3182e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.238522123343092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8190472011188983, dt = 0.001516371329525838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1237.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 288.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1807.00 ns (66.8%)
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.0507e+05 | 262144 | 1 | 4.332e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.600126838959527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.820563572448424, dt = 0.0015164827831204094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.1%)
patch tree reduce : 1180.00 ns (0.3%)
gen split merge : 814.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 326.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1796.00 ns (68.0%)
Info: cfl dt = 0.001516600703901376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2905e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.18299077914847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8220800552315444, dt = 0.001516600703901376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 988.00 ns (0.3%)
LB compute : 315.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.4%)
Info: cfl dt = 0.0015165923007979926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3363e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.279570323278987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8235966559354457, dt = 0.0015165923007979926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 923.00 ns (0.3%)
LB compute : 288.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (71.3%)
Info: cfl dt = 0.0015164531113504764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4585e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.533966868602887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8251132482362435, dt = 0.0015164531113504764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1200.00 ns (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 290.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1820.00 ns (66.8%)
Info: cfl dt = 0.0015163162704450856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3435e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.29307064671294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.826629701347594, dt = 0.0015163162704450856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1541.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 311.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1978.00 ns (69.4%)
Info: cfl dt = 0.0015161815822398016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3139e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.230030109340275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.828146017618039, dt = 0.0015161815822398016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 1146.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1190.00 ns (0.4%)
LB compute : 306.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1841.00 ns (66.8%)
Info: cfl dt = 0.0015160489409107366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2582e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.112745870014018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.829662199200279, dt = 0.0015160489409107366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 1646.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1044.00 ns (0.3%)
LB compute : 310.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (68.0%)
Info: cfl dt = 0.0015159183217066012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4147e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.437259969376942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.83117824814119, dt = 0.0015159183217066012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1405.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.2%)
LB compute : 314.30 us (93.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (73.9%)
Info: cfl dt = 0.0015157897719186757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9618e+05 | 262144 | 1 | 3.765e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.493137861769457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8326941664628964, dt = 0.0015157897719186757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1308.00 ns (0.4%)
gen split merge : 1081.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 306.95 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.7%)
Info: cfl dt = 0.0015156634206127252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3573e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.315163216906484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.834209956234815, dt = 0.0015156634206127252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 272.45 us (93.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (69.3%)
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.9106e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.38405616122296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8357256196554275, dt = 0.0015155395593065399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.0%)
patch tree reduce : 1555.00 ns (0.4%)
gen split merge : 1115.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 330.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.9%)
Info: cfl dt = 0.0015154185088834657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3504e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.29821423934381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.837241159214734, dt = 0.0015154185088834657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1158.00 ns (0.3%)
LB compute : 315.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1981.00 ns (67.1%)
Info: cfl dt = 0.00151530060909324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3981e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.396281131604477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8387565777236174, dt = 0.00151530060909324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.1%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 770.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 269.20 us (93.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.9%)
Info: cfl dt = 0.0015151861934185747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3913e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.380983845261005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8402718783327106, dt = 0.0015151861934185747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1307.00 ns (0.4%)
gen split merge : 1269.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 271.68 us (93.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.53 us (95.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.3183e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.147131296229604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.841787064526129, dt = 0.001515075582154235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.0%)
patch tree reduce : 1702.00 ns (0.6%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 280.18 us (93.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (69.5%)
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 | 7.3455e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.283366022399974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.843302140108283, dt = 0.0015149690623992111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1189.00 ns (0.4%)
gen split merge : 1075.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 299.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.3%)
Info: cfl dt = 0.0015148668466845676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4707e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.542648631008126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.844817109170682, dt = 0.0015148668466845676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1146.00 ns (0.4%)
LB compute : 297.61 us (93.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.1%)
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.9709e+05 | 262144 | 1 | 3.761e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.501908407927205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8463319760173666, dt = 0.0015147690522014081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1421.00 ns (0.4%)
gen split merge : 1167.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.1%)
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.6442e+05 | 262144 | 1 | 3.945e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82141604133976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.847846745069568, dt = 0.0015146756999455584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1326.00 ns (0.4%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 277.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (68.1%)
Info: cfl dt = 0.0015145867305857757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3896e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.371062040306802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8493614207695135, dt = 0.0015145867305857757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1915.00 ns (0.7%)
gen split merge : 1165.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 820.00 ns (0.3%)
LB compute : 273.57 us (93.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1864.00 ns (67.2%)
Info: cfl dt = 0.0015145020634624315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3427e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.272649429357232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.850876007500099, dt = 0.0015145020634624315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1931.00 ns (0.6%)
gen split merge : 1194.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 285.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1827.00 ns (67.5%)
Info: cfl dt = 0.00151442159614864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3173e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.21890915725349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8523905095635618, dt = 0.00151442159614864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1517.00 ns (0.5%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 312.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (73.8%)
Info: cfl dt = 0.0015143452461225705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2454e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.068486311686662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8539049311597102, dt = 0.0015143452461225705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 755.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 929.00 ns (0.3%)
LB compute : 275.82 us (93.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1777.00 ns (67.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 | 7.3631e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31267392670506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.855419276405833, dt = 0.001514272915143187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 1409.00 ns (0.4%)
gen split merge : 1144.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.2%)
LB compute : 327.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1977.00 ns (69.2%)
Info: cfl dt = 0.0015142045189706036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3225e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.22738197467458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.856933549320976, dt = 0.0015142045189706036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1538.00 ns (0.5%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 307.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1757.00 ns (68.6%)
Info: cfl dt = 0.0015141400280183868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4128e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.414530064194025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8584477538399464, dt = 0.0015141400280183868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.3%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 298.47 us (93.9%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.8%)
Info: cfl dt = 0.0015140794981288535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2800e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.13766918112337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8599618938679647, dt = 0.0015140794981288535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1547.00 ns (0.5%)
gen split merge : 1097.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 280.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.7%)
Info: cfl dt = 0.001514023034559368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3369e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.255319205114528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8614759733660935, dt = 0.001514023034559368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1085.00 ns (0.4%)
LB compute : 274.89 us (93.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (66.9%)
Info: cfl dt = 0.0015139707561729894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3255e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231099338096415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.862989996400653, dt = 0.0015139707561729894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 1163.00 ns (0.4%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 944.00 ns (0.3%)
LB compute : 267.48 us (93.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1928.00 ns (68.6%)
Info: cfl dt = 0.001513922771154085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3666e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31607979350264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8645039671568258, dt = 0.001513922771154085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1218.00 ns (0.4%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 915.00 ns (0.3%)
LB compute : 273.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.7%)
Info: cfl dt = 0.0015138791660746398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3565e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.294631448448225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.86601788992798, dt = 0.0015138791660746398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 267.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1972.00 ns (69.1%)
Info: cfl dt = 0.0015138400045259285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3359e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.25140972237245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8675317690940547, dt = 0.0015138400045259285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 292.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.9%)
Info: cfl dt = 0.0015138053330645185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3751e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.332380640225331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8690456090985808, dt = 0.0015138053330645185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 274.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.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 | 7.3997e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.38327495457849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.870559414431645, dt = 0.0015137751903305779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 1228.00 ns (0.4%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 994.00 ns (0.3%)
LB compute : 273.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1949.00 ns (68.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 | 7.2886e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.151947468267597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8720731896219758, dt = 0.001513749610190356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1559.00 ns (0.5%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 268.73 us (93.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1728.00 ns (66.8%)
Info: cfl dt = 0.0015137286328372654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0473e+05 | 262144 | 1 | 3.720e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.650004072095374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8735869392321662, dt = 0.0015137286328372654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (2.1%)
patch tree reduce : 1536.00 ns (0.5%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 836.00 ns (0.3%)
LB compute : 262.71 us (93.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1838.00 ns (67.7%)
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.5957e+05 | 262144 | 1 | 3.974e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.710974446819046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8751006678650035, dt = 0.0015137123003179525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1437.00 ns (0.5%)
gen split merge : 1140.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 908.00 ns (0.3%)
LB compute : 263.24 us (93.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (67.9%)
Info: cfl dt = 0.0015137006515755283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5218e+05 | 262144 | 1 | 4.020e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55728686640441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8766143801653214, dt = 0.0015137006515755283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1279.00 ns (0.4%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 269.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1746.00 ns (66.3%)
Info: cfl dt = 0.0015136937202307778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4465e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.479377978950735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.878128080816897, dt = 0.0015136937202307778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 784.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 926.00 ns (0.3%)
LB compute : 316.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.4%)
Info: cfl dt = 0.0015136915316584026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4462e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.478745569428307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8796417745371277, dt = 0.0015136915316584026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1626.00 ns (0.5%)
gen split merge : 1135.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 295.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (66.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 | 7.3766e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.334000542101561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.881155466068786, dt = 0.0015136940950797359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1458.00 ns (0.4%)
gen split merge : 1191.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 315.47 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.9%)
Info: cfl dt = 0.0015137013934479256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3969e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.376220222804111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8826691601638657, dt = 0.0015137013934479256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1224.00 ns (0.4%)
gen split merge : 1120.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1140.00 ns (0.3%)
LB compute : 320.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1945.00 ns (69.6%)
Info: cfl dt = 0.0015137133743153997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3637e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.307227970911518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8841828615573135, dt = 0.0015137133743153997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1642.00 ns (0.5%)
gen split merge : 1138.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 855.00 ns (0.2%)
LB compute : 333.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.1%)
Info: cfl dt = 0.001513729999412867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3442e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.26679745283378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.885696574931629, dt = 0.001513729999412867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1328.00 ns (0.4%)
gen split merge : 783.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 946.00 ns (0.3%)
LB compute : 295.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1787.00 ns (67.8%)
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.7328e+05 | 262144 | 1 | 3.894e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.996185184308194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.887210304931042, dt = 0.0015137511905417163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1404.00 ns (0.4%)
gen split merge : 1156.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 320.55 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.6%)
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.9322e+05 | 262144 | 1 | 3.782e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.410745162373717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8887240561215837, dt = 0.0015137768389180083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 1657.00 ns (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 267.99 us (93.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1877.00 ns (67.7%)
Info: cfl dt = 0.0015137627307265594 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3851e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.352471638906323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.890237832960502, dt = 0.0015137627307265594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1757.00 ns (0.5%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 953.00 ns (0.3%)
LB compute : 311.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (77.3%)
Info: cfl dt = 0.001513748561952707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3637e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.307865441007309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8917515956912285, dt = 0.001513748561952707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1337.00 ns (0.4%)
gen split merge : 1140.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 936.00 ns (0.3%)
LB compute : 285.94 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.7%)
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.6881e+05 | 262144 | 1 | 3.920e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.90334677800978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.893265344253181, dt = 0.0015137384226942847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.1%)
patch tree reduce : 1447.00 ns (0.5%)
gen split merge : 1147.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1276.00 ns (0.4%)
LB compute : 269.43 us (93.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1805.00 ns (66.2%)
Info: cfl dt = 0.0015137322163847082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4389e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.463963681065993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8947790826758752, dt = 0.0015137322163847082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 13.44 us (4.6%)
split / merge op : 0/0
apply split merge : 1218.00 ns (0.4%)
LB compute : 263.47 us (89.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1988.00 ns (69.4%)
Info: cfl dt = 0.001513729871140335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4698e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.528257033856484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8962928148922598, dt = 0.001513729871140335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.2%)
patch tree reduce : 1329.00 ns (0.2%)
gen split merge : 1229.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1217.00 ns (0.2%)
LB compute : 561.72 us (96.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.4%)
Info: cfl dt = 0.0015137314541135028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3529e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.285241292530475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8978065447634003, dt = 0.0015137314541135028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1744.00 ns (0.6%)
gen split merge : 869.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 280.83 us (93.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (67.4%)
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 | 7.1797e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.925198204674567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8993202762175136, dt = 0.0015137365014985733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1540.00 ns (0.5%)
gen split merge : 766.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 315.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.6%)
Info: cfl dt = 0.001513745499904561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4427e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.471832116240124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.900834012719012, dt = 0.001513745499904561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1078.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 827.00 ns (0.3%)
LB compute : 293.60 us (93.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (68.7%)
Info: cfl dt = 0.0015137588155089644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3783e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.338098804750066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9023477582189168, dt = 0.0015137588155089644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1185.00 ns (0.3%)
gen split merge : 766.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 332.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.8%)
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.8932e+05 | 262144 | 1 | 3.803e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.32970181746359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9038615170344255, dt = 0.001513776587949398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1406.00 ns (0.4%)
gen split merge : 1185.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1220.00 ns (0.4%)
LB compute : 293.20 us (93.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.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 | 7.4583e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.504728609131808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.905375293622375, dt = 0.0015137987917873716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1260.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 295.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1887.00 ns (67.2%)
Info: cfl dt = 0.0015138253851566198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2988e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.173440915463377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9068890924141626, dt = 0.0015138253851566198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 1055.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1137.00 ns (0.4%)
LB compute : 291.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: cfl dt = 0.001513856260233836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4988e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.589383055962346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9084029177993194, dt = 0.001513856260233836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.0%)
patch tree reduce : 1171.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 958.00 ns (0.3%)
LB compute : 314.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.8%)
Info: cfl dt = 0.0015138910155625311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3926e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.368905828795034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9099167740595533, dt = 0.0004998926071135834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1378.00 ns (0.5%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 270.39 us (93.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1858.00 ns (67.8%)
Info: cfl dt = 0.0015139181142524397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5301e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.16938369851141 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 703.574001884 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0023.vtk [VTK Dump][rank=0]
- took 41.05 ms, bandwidth = 949.99 MB/s
amr::Godunov: t = 2.910416666666667, dt = 0.0015139181142524397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.0%)
patch tree reduce : 1635.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 322.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.7%)
Info: cfl dt = 0.0015139538468101474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1320e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.748821516563657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.911930584780919, dt = 0.0015139538468101474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1209.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1024.00 ns (0.3%)
LB compute : 338.16 us (94.8%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1829.00 ns (67.5%)
Info: cfl dt = 0.0015139931391419466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2903e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.157300002762765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9134445386277292, dt = 0.0015139931391419466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1440.00 ns (0.4%)
LB compute : 315.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (69.1%)
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.9135e+05 | 262144 | 1 | 3.792e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.374292298568273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9149585317668714, dt = 0.0015140361469536182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.3%)
patch tree reduce : 1298.00 ns (0.5%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1025.00 ns (0.4%)
LB compute : 267.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.2%)
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.2084e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.908530448163358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.916472567913825, dt = 0.0015140829034040663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1275.00 ns (0.4%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1177.00 ns (0.4%)
LB compute : 293.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1741.00 ns (65.6%)
Info: cfl dt = 0.001514133351716558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3216e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.223588605901462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.917986650817229, dt = 0.001514133351716558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1150.00 ns (0.4%)
gen split merge : 793.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 300.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: cfl dt = 0.0015141873541170585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4969e+05 | 262144 | 1 | 3.497e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.588707110732027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9195007841689455, dt = 0.0015141873541170585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1484.00 ns (0.4%)
gen split merge : 1200.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1228.00 ns (0.4%)
LB compute : 322.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.1%)
Info: cfl dt = 0.0015142447597728222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3539e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.291925646532324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9210149715230624, dt = 0.0015142447597728222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 947.00 ns (0.3%)
LB compute : 292.96 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1997.00 ns (69.1%)
Info: cfl dt = 0.0015143054200442497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4054e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.399455353456734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.922529216282835, dt = 0.0015143054200442497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.2%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 1159.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 299.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1836.00 ns (65.1%)
Info: cfl dt = 0.001514369197344292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3161e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.21442714905128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9240435217028793, dt = 0.001514369197344292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.2%)
patch tree reduce : 1585.00 ns (0.5%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 889.00 ns (0.3%)
LB compute : 271.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1802.00 ns (68.9%)
Info: cfl dt = 0.0015144359727453222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5265e+05 | 262144 | 1 | 3.483e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.652545173286248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.925557890900224, dt = 0.0015144359727453222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1197.00 ns (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 967.00 ns (0.3%)
LB compute : 292.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (70.3%)
Info: cfl dt = 0.001514505655922173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3274e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.239325361363852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.927072326872969, dt = 0.001514505655922173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 289.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1856.00 ns (69.1%)
Info: cfl dt = 0.0015145781904667012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3014e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.185789317542678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9285868325288913, dt = 0.0015145781904667012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1592.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 858.00 ns (0.3%)
LB compute : 263.93 us (93.4%)
LB move op cnt : 0
LB apply : 2.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.1%)
Info: cfl dt = 0.0015146535560271132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2607e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.101844974444486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.930101410719358, dt = 0.0015146535560271132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1465.00 ns (0.5%)
gen split merge : 780.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 824.00 ns (0.3%)
LB compute : 270.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.3%)
Info: cfl dt = 0.0015147321452182209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3831e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.357247922477152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9316160642753855, dt = 0.0015147321452182209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 287.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Info: cfl dt = 0.0015148140411841418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3247e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.23654756351275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9331307964206035, dt = 0.0015148140411841418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1294.00 ns (0.4%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1230.00 ns (0.4%)
LB compute : 275.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (68.2%)
Info: cfl dt = 0.0015148992385352268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3454e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.280397772483681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9346456104617875, dt = 0.0015148992385352268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 300.70 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1862.00 ns (67.6%)
Info: cfl dt = 0.0015149877942888155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3063e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.199964834091526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.936160509700323, dt = 0.0015149877942888155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1177.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.1%)
Info: cfl dt = 0.00151507978928987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3595e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.311529973499738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9376754974946118, dt = 0.00151507978928987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1500.00 ns (0.5%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 272.41 us (93.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1646.00 ns (65.5%)
Info: cfl dt = 0.0015151753049182644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3181e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.22646432702113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9391905772839015, dt = 0.0015151753049182644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 916.00 ns (0.3%)
LB compute : 295.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.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 | 7.3055e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.20112478236328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9407057525888196, dt = 0.0015152744181629663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1674.00 ns (0.5%)
gen split merge : 1112.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1255.00 ns (0.4%)
LB compute : 287.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.4%)
Info: cfl dt = 0.0015153261504207989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3322e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.257742626173066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9422210270069824, dt = 0.0015153261504207989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1295.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 319.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.2%)
Info: cfl dt = 0.0015153658068953304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3421e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.278848375137175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9437363531574032, dt = 0.0015153658068953304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1256.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 918.00 ns (0.3%)
LB compute : 290.30 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.2%)
Info: cfl dt = 0.0015154101903143299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9606e+05 | 262144 | 1 | 3.766e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.485292586106977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9452517189642986, dt = 0.0015154101903143299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1264.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 285.38 us (93.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.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 | 7.4526e+05 | 262144 | 1 | 3.517e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.50962339963581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.946767129154613, dt = 0.0015154591761117155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 1175.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 321.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1866.00 ns (68.2%)
Info: cfl dt = 0.001515512758515192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3576e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31244211229065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.948282588330725, dt = 0.001515512758515192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1104.00 ns (0.3%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 987.00 ns (0.3%)
LB compute : 300.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1816.00 ns (66.8%)
Info: cfl dt = 0.0015155711235613609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3556e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.308684749461335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.94979810108924, dt = 0.0015155711235613609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 1003.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1349.00 ns (0.4%)
LB compute : 303.82 us (94.1%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1850.00 ns (68.7%)
Info: cfl dt = 0.0015156345699963358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5410e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.695191683070167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9513136722128013, dt = 0.0015156345699963358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.4%)
patch tree reduce : 1286.00 ns (0.5%)
gen split merge : 1161.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 262.78 us (93.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1826.00 ns (66.8%)
Info: cfl dt = 0.0015157032495444146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3003e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.194906235598163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9528293067827978, dt = 0.0015157032495444146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (2.0%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 267.64 us (93.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1804.00 ns (66.9%)
Info: cfl dt = 0.0015157771281056741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3384e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.274990170160422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.954345010032342, dt = 0.0015157771281056741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 1387.00 ns (0.5%)
gen split merge : 1180.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 269.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1832.00 ns (68.8%)
Info: cfl dt = 0.0015158560585658858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4353e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.47739588635393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.955860787160448, dt = 0.0015158560585658858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.9%)
patch tree reduce : 1828.00 ns (0.5%)
gen split merge : 895.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1010.00 ns (0.3%)
LB compute : 344.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.4%)
Info: cfl dt = 0.0015159398838577162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3724e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.347123746292972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9573766432190136, dt = 0.0015159398838577162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.2%)
patch tree reduce : 1414.00 ns (0.5%)
gen split merge : 1300.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1164.00 ns (0.4%)
LB compute : 290.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.9%)
Info: cfl dt = 0.0015160286088810536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0133e+05 | 262144 | 1 | 3.738e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60042927191115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9588925831028714, dt = 0.0015160286088810536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1506.00 ns (0.5%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 803.00 ns (0.2%)
LB compute : 309.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1891.00 ns (67.3%)
Info: cfl dt = 0.0015161221929970955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3609e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.325033261376989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9604086117117525, dt = 0.0015161221929970955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 291.40 us (94.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1804.00 ns (67.6%)
Info: cfl dt = 0.0015162206667123776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5537e+05 | 262144 | 1 | 3.470e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.727282248153967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9619247339047496, dt = 0.0015162206667123776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.3%)
patch tree reduce : 1587.00 ns (0.6%)
gen split merge : 1201.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 815.00 ns (0.3%)
LB compute : 265.62 us (93.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.0%)
Info: cfl dt = 0.0015163241583407213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3775e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.361488613314599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.963440954571462, dt = 0.0015163241583407213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.2%)
patch tree reduce : 1199.00 ns (0.4%)
gen split merge : 1295.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1124.00 ns (0.4%)
LB compute : 268.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (66.6%)
Info: cfl dt = 0.0015164328513112427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4063e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.422546687153742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.964957278729803, dt = 0.0015164328513112427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 1324.00 ns (0.4%)
gen split merge : 1109.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 316.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
Info: cfl dt = 0.0015165470045095122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3735e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.355268461296092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.966473711581114, dt = 0.0015165470045095122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 1178.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 267.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1797.00 ns (66.8%)
Info: cfl dt = 0.0015166668289555375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3597e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.327850224806676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9679902585856235, dt = 0.0015166668289555375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.0%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1137.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 312.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1896.00 ns (68.1%)
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.9372e+05 | 262144 | 1 | 3.779e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.449020060524912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.969506925414579, dt = 0.0015167924267402307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1465.00 ns (0.5%)
gen split merge : 1266.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.4%)
LB compute : 265.54 us (93.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1766.00 ns (68.1%)
Info: cfl dt = 0.0015168697167079774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9313e+05 | 262144 | 1 | 3.782e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.437927035404625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9710237178413195, dt = 0.0015168697167079774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1259.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1407.00 ns (0.4%)
LB compute : 299.57 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.8%)
Info: cfl dt = 0.0015167805799889949 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3971e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.408886611330917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9725405875580275, dt = 0.0015167805799889949
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1878.00 ns (0.6%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 954.00 ns (0.3%)
LB compute : 296.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1749.00 ns (67.2%)
Info: cfl dt = 0.0015166937676758265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3113e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.229253850914693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9740573681380167, dt = 0.0015166937676758265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 1307.00 ns (0.5%)
gen split merge : 1207.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1139.00 ns (0.4%)
LB compute : 270.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1902.00 ns (67.7%)
Info: cfl dt = 0.0015166092689664378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4001e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.41344403084106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9755740619056925, dt = 0.0015166092689664378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (0.9%)
patch tree reduce : 1216.00 ns (0.2%)
gen split merge : 805.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1386.00 ns (0.2%)
LB compute : 624.28 us (96.7%)
LB move op cnt : 0
LB apply : 4.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (81.0%)
Info: cfl dt = 0.0015165271292119965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3193e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.244305504593882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.977090671174659, dt = 0.0015165271292119965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1180.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1029.00 ns (0.3%)
LB compute : 294.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1889.00 ns (68.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 | 7.4136e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.439810246512314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.978607198303871, dt = 0.00151644744508862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1536.00 ns (0.5%)
gen split merge : 1163.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1280.00 ns (0.4%)
LB compute : 294.18 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1844.00 ns (67.7%)
Info: cfl dt = 0.0015163703532176092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3512e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.309093160232617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9801236457489595, dt = 0.0015163703532176092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.1%)
patch tree reduce : 1638.00 ns (0.5%)
gen split merge : 907.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 301.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (68.8%)
Info: cfl dt = 0.0015162959964158172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3080e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.218239997487087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.981640016102177, dt = 0.0015162959964158172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1179.00 ns (0.4%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 295.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1837.00 ns (68.5%)
Info: cfl dt = 0.001516224535963824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4183e+05 | 262144 | 1 | 3.534e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.447284965415225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.983156312098593, dt = 0.001516224535963824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 307.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (73.5%)
Info: cfl dt = 0.0015161561115093257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1786e+05 | 262144 | 1 | 3.652e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.947422948491623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9846725366345566, dt = 0.0015161561115093257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.0%)
patch tree reduce : 1692.00 ns (0.5%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 316.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1752.00 ns (66.4%)
Info: cfl dt = 0.0015160908162935285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4909e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.596893415744471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9861886927460657, dt = 0.0015160908162935285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 1306.00 ns (0.5%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 270.21 us (93.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.8%)
Info: cfl dt = 0.0015160287098673958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0038e+05 | 262144 | 1 | 3.743e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.582206259462168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9877047835623594, dt = 0.0015160287098673958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 297.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1917.00 ns (70.1%)
Info: cfl dt = 0.0015159698121613562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4139e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.435408200321694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.989220812272227, dt = 0.0015159698121613562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.4%)
patch tree reduce : 1288.00 ns (0.4%)
gen split merge : 1260.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 271.75 us (93.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1951.00 ns (69.2%)
Info: cfl dt = 0.0015159140978895074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3907e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.386492672897921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.990736782084388, dt = 0.0015159140978895074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 1225.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1138.00 ns (0.3%)
LB compute : 357.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: cfl dt = 0.00151586150586323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3500e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.301142209090388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9922526961822773, dt = 0.00151586150586323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.04 us (5.7%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 917.00 ns (0.3%)
LB compute : 302.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1996.00 ns (69.8%)
Info: cfl dt = 0.0015158119342900196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3673e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.336651213268663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9937685576881403, dt = 0.0015158119342900196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1709.00 ns (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 298.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.5%)
Info: cfl dt = 0.0015157652695703308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4284e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.46334502708018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9952843696224303, dt = 0.0015157652695703308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1576.00 ns (0.5%)
gen split merge : 1220.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1198.00 ns (0.4%)
LB compute : 293.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1808.00 ns (67.6%)
Info: cfl dt = 0.0015157213859561688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3871e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.376827459154423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9968001348920006, dt = 0.0015157213859561688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.1%)
patch tree reduce : 1211.00 ns (0.4%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 896.00 ns (0.3%)
LB compute : 274.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (68.4%)
Info: cfl dt = 0.0015156801812625782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5108e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.633840765316458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.998315856277957, dt = 0.0015156801812625782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.1%)
patch tree reduce : 1173.00 ns (0.4%)
gen split merge : 794.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 284.12 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.8%)
Info: cfl dt = 0.0015156415719529508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5817e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78099021164866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.999831536459219, dt = 0.0015156415719529508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 305.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.8%)
Info: cfl dt = 0.0015156054850431545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3991e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.400590629459359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.001347178031172, dt = 0.0015156054850431545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1554.00 ns (0.5%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 808.00 ns (0.3%)
LB compute : 290.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.1%)
Info: cfl dt = 0.001515571851890059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4251e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.454335196329518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0028627835162154, dt = 0.001515571851890059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1170.00 ns (0.4%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 311.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1929.00 ns (69.2%)
Info: cfl dt = 0.0015155406034392217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4180e+05 | 262144 | 1 | 3.534e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.439180981094596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0043783553681056, dt = 0.0015155406034392217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.1%)
patch tree reduce : 1298.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 303.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.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 | 7.6538e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.929592179092186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.005893895971545, dt = 0.0015155117262914545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1205.00 ns (0.4%)
gen split merge : 808.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 298.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1888.00 ns (69.6%)
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.9318e+05 | 262144 | 1 | 3.782e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.426743370178254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0074094076978364, dt = 0.0015154852770668096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1177.00 ns (0.3%)
gen split merge : 827.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 340.24 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.8%)
Info: cfl dt = 0.001515461347178684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4064e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.414270098050165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0089248929749033, dt = 0.001515461347178684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.1%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1164.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 295.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: cfl dt = 0.0015154400519389322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3998e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.400304540316458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.010440354322082, dt = 0.0015154400519389322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 1167.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1258.00 ns (0.4%)
LB compute : 301.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (73.2%)
Info: cfl dt = 0.0015154215237168313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4716e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.549506082941475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0119557943740207, dt = 0.0015154215237168313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 1490.00 ns (0.4%)
gen split merge : 1131.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 313.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.5%)
Info: cfl dt = 0.0015154059066079205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4735e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.553210561180252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0134712158977375, dt = 0.0015154059066079205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1555.00 ns (0.5%)
gen split merge : 1207.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 788.00 ns (0.3%)
LB compute : 279.19 us (93.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1941.00 ns (69.4%)
Info: cfl dt = 0.0015153933497477634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3833e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.365294692625927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0149866218043453, dt = 0.0015153933497477634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.2%)
patch tree reduce : 1217.00 ns (0.4%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 910.00 ns (0.3%)
LB compute : 267.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (67.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 | 7.3261e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.246101858148052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.016502015154093, dt = 0.0015153840124235262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1555.00 ns (0.5%)
gen split merge : 1146.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 865.00 ns (0.3%)
LB compute : 279.06 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1990.00 ns (70.3%)
Info: cfl dt = 0.0015153780617198158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3239e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.24145384348492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0180173991665167, dt = 0.0015153780617198158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1169.00 ns (0.3%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 316.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.3%)
Info: cfl dt = 0.0015153756456894494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5339e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.678374814024421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0195327772282363, dt = 0.0015153756456894494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 1015.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 287.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (67.4%)
Info: cfl dt = 0.001515376914254306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2536e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.095145069549405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.021048152873926, dt = 0.001515376914254306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1399.00 ns (0.5%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1039.00 ns (0.3%)
LB compute : 278.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
Info: cfl dt = 0.0015153820124678256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5042e+05 | 262144 | 1 | 3.493e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.61666022579687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0225635297881803, dt = 0.0015153820124678256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1239.00 ns (0.4%)
LB compute : 278.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (69.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 | 7.3481e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.291789745453087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.024078911800648, dt = 0.0015153910871337378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1206.00 ns (0.4%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.4%)
LB compute : 274.61 us (93.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1991.00 ns (70.3%)
Info: cfl dt = 0.001515404324355273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4439e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.49120698848711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.025594302887782, dt = 0.001515404324355273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1271.00 ns (0.4%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 294.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (72.4%)
Info: cfl dt = 0.0015154218966057418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3313e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.257131271941537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.027109707212137, dt = 0.0015154218966057418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1308.00 ns (0.4%)
gen split merge : 1270.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1075.00 ns (0.3%)
LB compute : 291.33 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.6%)
Info: cfl dt = 0.0015154429042071658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4476e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.499332969254402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0286251291087427, dt = 0.0015154429042071658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1515.00 ns (0.5%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 279.48 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.5%)
Info: cfl dt = 0.001515425174250915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3186e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231053170510979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0301405720129497, dt = 0.001515425174250915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1185.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 967.00 ns (0.3%)
LB compute : 281.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.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 | 7.4548e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.514288606046206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0316559971872006, dt = 0.0015154111382894928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1204.00 ns (0.4%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1207.00 ns (0.4%)
LB compute : 307.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1959.00 ns (67.8%)
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.8056e+05 | 262144 | 1 | 3.852e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.163169786653503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.03317140832549, dt = 0.0015154007715633753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 1204.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1216.00 ns (0.4%)
LB compute : 280.13 us (93.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1881.00 ns (68.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.9432e+05 | 262144 | 1 | 3.776e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.449478057627976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0346868090970536, dt = 0.0015153940071035783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1155.00 ns (0.4%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 933.00 ns (0.3%)
LB compute : 289.87 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.5%)
Info: cfl dt = 0.0015153907730331483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3690e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.335419553830981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0362022031041573, dt = 0.0015153907730331483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 1281.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1134.00 ns (0.4%)
LB compute : 293.78 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.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 | 7.3176e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.228421071452814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0377175938771903, dt = 0.0015153907753273053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1224.00 ns (0.4%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 301.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1840.00 ns (67.0%)
Info: cfl dt = 0.0015153939144565602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4693e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.544156053610953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0392329846525175, dt = 0.0015153939144565602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.9%)
patch tree reduce : 1247.00 ns (0.4%)
gen split merge : 1139.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1138.00 ns (0.3%)
LB compute : 319.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1968.00 ns (69.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 | 7.3284e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.250956238672153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.040748378566974, dt = 0.001515400137354644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 1153.00 ns (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 296.29 us (93.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (72.5%)
Info: cfl dt = 0.0015154094092094715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2848e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.16036746451758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0422637787043287, dt = 0.0004445546290048341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1166.00 ns (0.4%)
gen split merge : 800.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 297.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.1%)
Info: cfl dt = 0.00151541288628109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3245e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.471598618550884 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 735.6932826430001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0024.vtk [VTK Dump][rank=0]
- took 39.46 ms, bandwidth = 988.40 MB/s
amr::Godunov: t = 3.0427083333333336, dt = 0.00151541288628109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.9%)
patch tree reduce : 1710.00 ns (0.5%)
gen split merge : 786.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 308.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1912.00 ns (68.1%)
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 | 7.3142e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.221506777999787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0442237462196147, dt = 0.0015154300826208877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1231.00 ns (0.4%)
gen split merge : 1208.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1259.00 ns (0.4%)
LB compute : 285.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.0%)
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.7750e+05 | 262144 | 1 | 3.869e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.099636027495905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0457391763022357, dt = 0.001515448127612928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.06 us (6.0%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 284.39 us (90.0%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (68.8%)
Info: cfl dt = 0.0015154674465765168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3384e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.272289938951188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0472546244298484, dt = 0.0015154674465765168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1238.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 280.23 us (93.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.5%)
Info: cfl dt = 0.0015154887370203722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2447e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.077551033182818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.048770091876425, dt = 0.0015154887370203722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.1%)
patch tree reduce : 1454.00 ns (0.4%)
gen split merge : 849.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 321.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.6%)
Info: cfl dt = 0.0015155126799600222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3445e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.285470379381257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0502855806134455, dt = 0.0015155126799600222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1356.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 290.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (68.4%)
Info: cfl dt = 0.0015155397887503838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4856e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.579226360436047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0518010932934057, dt = 0.0015155397887503838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.2%)
patch tree reduce : 1418.00 ns (0.5%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 282.59 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.4%)
Info: cfl dt = 0.001515570370582603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3679e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.334616532651932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.053316633082156, dt = 0.001515570370582603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.3%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1071.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 833.00 ns (0.3%)
LB compute : 270.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.68 us (94.1%)
Info: cfl dt = 0.0015156045490808813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2755e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.14259707299227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.054832203452739, dt = 0.0015156045490808813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1627.00 ns (0.5%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 760.00 ns (0.2%)
LB compute : 302.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1891.00 ns (70.1%)
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.8809e+05 | 262144 | 1 | 3.810e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.32168076009373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.05634780800182, dt = 0.0015156423110062969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1400.00 ns (0.4%)
gen split merge : 1132.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 298.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1856.00 ns (67.0%)
Info: cfl dt = 0.0015156862371648158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2085e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.003825329201666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.057863450312826, dt = 0.0015156862371648158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1281.00 ns (0.4%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 930.00 ns (0.3%)
LB compute : 299.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1915.00 ns (69.3%)
Info: cfl dt = 0.001515734872975682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3529e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.30486728295105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0593791365499907, dt = 0.001515734872975682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1358.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 935.00 ns (0.3%)
LB compute : 278.30 us (93.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.5%)
Info: cfl dt = 0.001515787377940388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3608e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.321939945354975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0608948714229665, dt = 0.001515787377940388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.9%)
patch tree reduce : 1331.00 ns (0.4%)
gen split merge : 1130.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 328.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.9%)
Info: cfl dt = 0.001515843479157141 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3332e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.26501911820589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.062410658800907, dt = 0.001515843479157141
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.2%)
patch tree reduce : 1314.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1208.00 ns (0.4%)
LB compute : 305.52 us (94.0%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.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 | 7.2910e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.177635638977387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.063926502280064, dt = 0.0015159032245213697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.0%)
patch tree reduce : 1504.00 ns (0.5%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 307.79 us (93.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1865.00 ns (68.3%)
Info: cfl dt = 0.0015159667828851446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2946e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.18564027100254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0654424055045855, dt = 0.0015159667828851446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1244.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 277.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1936.00 ns (70.8%)
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.9132e+05 | 262144 | 1 | 3.792e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.39224209714805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0669583722874707, dt = 0.0015160343226325345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 270.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.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 | 7.3432e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.288214403672066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.068474406610103, dt = 0.0015161059439542158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.3%)
patch tree reduce : 1470.00 ns (0.5%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 290.79 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: cfl dt = 0.0015161818132272207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4007e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.408577347446256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.069990512554057, dt = 0.0015161818132272207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 273.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: cfl dt = 0.0015162619563372926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3096e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.219845484274948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0715066943672844, dt = 0.0015162619563372926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 1284.00 ns (0.4%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 308.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1986.00 ns (70.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 | 7.3050e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.21102192243974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0730229563236215, dt = 0.0015163462513685779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1266.00 ns (0.4%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 276.80 us (93.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.7%)
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 | 7.3342e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.27252471569624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.07453930257499, dt = 0.0015164345170216097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1338.00 ns (0.4%)
gen split merge : 1177.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 300.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1848.00 ns (68.8%)
Info: cfl dt = 0.0015165265390396183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2210e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.037825842727415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0760557370920116, dt = 0.0015165265390396183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1580.00 ns (0.5%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 301.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.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 | 7.3421e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.290863780949714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.077572263631051, dt = 0.0015166220925487708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1249.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 273.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.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 | 7.1932e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.981762510719236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0790888857236, dt = 0.00151672114130779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.1%)
patch tree reduce : 1111.00 ns (0.2%)
gen split merge : 828.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.1%)
LB compute : 615.11 us (96.6%)
LB move op cnt : 0
LB apply : 4.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (82.5%)
Info: cfl dt = 0.001516823836544423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2428e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.086118122311483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0806056068649075, dt = 0.001516823836544423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1239.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1264.00 ns (0.4%)
LB compute : 294.00 us (94.1%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1772.00 ns (67.7%)
Info: cfl dt = 0.0015169301594636642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3053e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.217157977672251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.082122430701452, dt = 0.0015169301594636642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1203.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1201.00 ns (0.4%)
LB compute : 307.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.1%)
Info: cfl dt = 0.0015170399187086636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3274e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.264279674036864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0836393608609156, dt = 0.0015170399187086636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1191.00 ns (0.4%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 898.00 ns (0.3%)
LB compute : 274.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.5%)
Info: cfl dt = 0.0015171528169255649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3210e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.252123198342009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.085156400779624, dt = 0.0015171528169255649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1362.00 ns (0.5%)
gen split merge : 1192.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1106.00 ns (0.4%)
LB compute : 275.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.1%)
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 | 7.3180e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.24706981902699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0866735535965497, dt = 0.0015172685845092576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 282.12 us (93.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (74.8%)
Info: cfl dt = 0.0015173870381570904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3627e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.34128412862956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.088190822181059, dt = 0.0015173870381570904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 1090.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 278.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.3%)
Info: cfl dt = 0.001517508532836976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3208e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.255236303176718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.089708209219216, dt = 0.001517508532836976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1564.00 ns (0.5%)
gen split merge : 1214.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 820.00 ns (0.3%)
LB compute : 285.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.2%)
Info: cfl dt = 0.001517632949150745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3552e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.32800074226363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.091225717752053, dt = 0.001517632949150745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.9%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 1169.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.2%)
LB compute : 344.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (72.8%)
Info: cfl dt = 0.0015177601599644613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3703e+05 | 262144 | 1 | 4.115e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.276712608992966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0927433507012037, dt = 0.0015177601599644613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.7%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 350.62 us (95.1%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
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.0595e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.630039691659661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.094261110861168, dt = 0.0015178901241101452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 1065.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1016.00 ns (0.3%)
LB compute : 349.98 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (67.0%)
Info: cfl dt = 0.0015180228541349585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2726e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.159722507715578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0957790009852784, dt = 0.0015180228541349585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.4%)
patch tree reduce : 1180.00 ns (0.4%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 268.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1756.00 ns (66.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.3995e+05 | 262144 | 1 | 4.096e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.341022244310627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0972970238394133, dt = 0.0015181584061698822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.1%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 920.00 ns (0.3%)
LB compute : 266.28 us (93.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1767.00 ns (68.1%)
Info: cfl dt = 0.0015182968578862069 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9857e+05 | 262144 | 1 | 3.753e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.564377191119927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.098815182245583, dt = 0.0015182968578862069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1240.00 ns (0.4%)
gen split merge : 789.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 320.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: cfl dt = 0.0015184382977082864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4151e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.460899856088108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1003334791034693, dt = 0.0015184382977082864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1255.00 ns (0.4%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.3%)
LB compute : 268.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.4%)
Info: cfl dt = 0.00151858282522369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1890e+05 | 262144 | 1 | 3.646e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.99096804984849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1018519174011776, dt = 0.00151858282522369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1587.00 ns (0.5%)
gen split merge : 1198.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 747.00 ns (0.2%)
LB compute : 304.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.6%)
Info: cfl dt = 0.0015187305475160159 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3920e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.415616341258339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.103370500226401, dt = 0.0015187305475160159
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1561.00 ns (0.5%)
gen split merge : 795.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 306.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1901.00 ns (68.6%)
Info: cfl dt = 0.0015188815698566173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3198e+05 | 262144 | 1 | 3.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.266663159336101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1048892307739173, dt = 0.0015188815698566173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1187.00 ns (0.4%)
gen split merge : 1079.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1324.00 ns (0.4%)
LB compute : 307.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.8%)
Info: cfl dt = 0.0015190360293930356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4071e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.450144288693762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.106408112343774, dt = 0.0015190360293930356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 1267.00 ns (0.4%)
gen split merge : 804.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 270.66 us (93.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (67.3%)
Info: cfl dt = 0.001519194045362695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3777e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.390459091298219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1079271483731667, dt = 0.001519194045362695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.2%)
patch tree reduce : 1241.00 ns (0.4%)
gen split merge : 823.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 314.24 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Info: cfl dt = 0.0015193556812159621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3510e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.336368832663478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1094463424185292, dt = 0.0015193556812159621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1538.00 ns (0.5%)
gen split merge : 1117.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 310.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.6%)
Info: cfl dt = 0.0015195205374633246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4166e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.474941937009293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1109656980997453, dt = 0.0015195205374633246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1306.00 ns (0.4%)
gen split merge : 775.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 273.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (68.6%)
Info: cfl dt = 0.0015196893681854585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3312e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.298347128441057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1124852186372087, dt = 0.0015196893681854585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 280.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (68.9%)
Info: cfl dt = 0.001519862331722133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4994e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.651070622080056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.114004908005394, dt = 0.001519862331722133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1223.00 ns (0.4%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 271.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1927.00 ns (69.1%)
Info: cfl dt = 0.0015200393040285044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4128e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.472196375723348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.115524770337116, dt = 0.0015200393040285044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1837.00 ns (0.6%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 290.89 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1821.00 ns (67.0%)
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 | 6.9438e+05 | 262144 | 1 | 3.775e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.494782210675298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1170448096411447, dt = 0.0015202201936814225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 325.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1780.00 ns (67.4%)
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.8459e+05 | 262144 | 1 | 3.829e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.292149738894679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.118565029834826, dt = 0.0015204042886740893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1258.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.35 us (94.1%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1708.00 ns (66.3%)
Info: cfl dt = 0.0015204616254958867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2565e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.151244754928321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1200854341235003, dt = 0.0015204616254958867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1276.00 ns (0.4%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 282.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.6%)
Info: cfl dt = 0.001520407634848765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4413e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.53763895942753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.121605895748996, dt = 0.001520407634848765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 289.34 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.6%)
Info: cfl dt = 0.0015203548056675201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3405e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.326662700711426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.123126303383845, dt = 0.0015203548056675201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.2%)
patch tree reduce : 1399.00 ns (0.4%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 828.00 ns (0.3%)
LB compute : 296.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.1%)
Info: cfl dt = 0.0015203031301114812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3370e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.318874244009518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1246466581895125, dt = 0.0015203031301114812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.1%)
patch tree reduce : 1822.00 ns (0.6%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 307.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
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.8342e+05 | 262144 | 1 | 3.836e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.268649687910187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.126166961319624, dt = 0.0015202526192163396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.5%)
patch tree reduce : 1424.00 ns (0.5%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 263.18 us (92.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1635.00 ns (65.3%)
Info: cfl dt = 0.0015202033093761995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3746e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.396228711622435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1276872139388403, dt = 0.0015202033093761995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1245.00 ns (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 278.98 us (93.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1970.00 ns (70.2%)
Info: cfl dt = 0.0015201552674344952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3690e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.384216230138275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1292074172482165, dt = 0.0015201552674344952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.5%)
patch tree reduce : 1632.00 ns (0.5%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 745.00 ns (0.3%)
LB compute : 277.25 us (93.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (64.9%)
Info: cfl dt = 0.0015201086739841981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3876e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.422557277525335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.130727572515651, dt = 0.0015201086739841981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1685.00 ns (0.6%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1138.00 ns (0.4%)
LB compute : 274.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1875.00 ns (70.4%)
Info: cfl dt = 0.0015200637173200602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3486e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.340665618327616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1322476811896354, dt = 0.0015200637173200602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1616.00 ns (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 270.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1816.00 ns (69.6%)
Info: cfl dt = 0.0015200205926460028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1925e+05 | 262144 | 1 | 3.645e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.014372784851297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1337677449069554, dt = 0.0015200205926460028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 1278.00 ns (0.4%)
gen split merge : 1074.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1267.00 ns (0.4%)
LB compute : 301.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1921.00 ns (67.9%)
Info: cfl dt = 0.0015199794934892521 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3582e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.359681833681819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1352877654996014, dt = 0.0015199794934892521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1329.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 950.00 ns (0.3%)
LB compute : 325.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.3%)
Info: cfl dt = 0.0015199406004063503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3374e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.315798923130608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1368077449930905, dt = 0.0015199406004063503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1235.00 ns (0.4%)
gen split merge : 810.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 303.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.6%)
Info: cfl dt = 0.0015199040851215694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0660e+05 | 262144 | 1 | 3.710e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74896165344602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.138327685593497, dt = 0.0015199040851215694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1274.00 ns (0.4%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.9%)
Info: cfl dt = 0.0015198700980280219 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3404e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.32135698957232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1398475896786184, dt = 0.0015198700980280219
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 299.92 us (93.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.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 | 7.1468e+05 | 262144 | 1 | 3.668e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.917018933880046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1413674597766463, dt = 0.0015198387258634296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1181.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1289.00 ns (0.4%)
LB compute : 304.94 us (94.1%)
LB move op cnt : 0
LB apply : 2.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1906.00 ns (69.6%)
Info: cfl dt = 0.0015198100206017795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4209e+05 | 262144 | 1 | 3.533e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.488729560668098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.14288729850251, dt = 0.0015198100206017795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.9%)
patch tree reduce : 1551.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1089.00 ns (0.3%)
LB compute : 332.29 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.2%)
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.9775e+05 | 262144 | 1 | 3.757e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.562971673495397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1444071085231116, dt = 0.0015197843381165655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.0%)
patch tree reduce : 1404.00 ns (0.4%)
gen split merge : 1098.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 763.00 ns (0.2%)
LB compute : 314.40 us (94.2%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1976.00 ns (69.9%)
Info: cfl dt = 0.0015197620964468262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3547e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.35011787227432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1459268928612283, dt = 0.0015197620964468262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1162.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 934.00 ns (0.3%)
LB compute : 311.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.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.6867e+05 | 262144 | 1 | 3.920e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.955649063086724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.147446654957675, dt = 0.0015197431995498045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.4%)
patch tree reduce : 1095.00 ns (0.4%)
gen split merge : 798.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 282.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1910.00 ns (68.1%)
Info: cfl dt = 0.0015197274918203965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0874e+05 | 262144 | 1 | 3.699e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.791706497865324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.148966398157225, dt = 0.0015197274918203965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 1169.00 ns (0.4%)
gen split merge : 1180.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1155.00 ns (0.4%)
LB compute : 268.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1775.00 ns (66.0%)
Info: cfl dt = 0.0015197147924704692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7514e+05 | 262144 | 1 | 3.883e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.090263539201725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1504861256490457, dt = 0.0015197147924704692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1208.00 ns (0.4%)
gen split merge : 784.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1330.00 ns (0.4%)
LB compute : 291.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1945.00 ns (70.0%)
Info: cfl dt = 0.0015197049210970133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3336e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.305202698268921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1520058404415163, dt = 0.0015197049210970133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1466.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 779.00 ns (0.2%)
LB compute : 310.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1971.00 ns (67.9%)
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.9998e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.608635762370035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1535255453626134, dt = 0.0015196977131684674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1104.00 ns (0.4%)
gen split merge : 777.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 268.72 us (93.7%)
LB move op cnt : 0
LB apply : 2.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.1%)
Info: cfl dt = 0.0015196930289473947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4351e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.51703714317431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.155045243075782, dt = 0.0015196930289473947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.2%)
patch tree reduce : 1155.00 ns (0.4%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 886.00 ns (0.3%)
LB compute : 266.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1815.00 ns (69.0%)
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.7829e+05 | 262144 | 1 | 3.865e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.155814745109312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1565649361047297, dt = 0.0015196907566968362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1219.00 ns (0.4%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 303.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1837.00 ns (68.2%)
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.2150e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.970517115183112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1580846268614264, dt = 0.0015196908104934041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.0%)
patch tree reduce : 1157.00 ns (0.3%)
gen split merge : 828.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 874.00 ns (0.3%)
LB compute : 312.79 us (94.3%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1787.00 ns (68.0%)
Info: cfl dt = 0.0015196931254368975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3279e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.293232914778597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1596043176719197, dt = 0.0015196931254368975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1280.00 ns (0.4%)
gen split merge : 1177.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 288.33 us (93.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.7%)
Info: cfl dt = 0.0015196976530024548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3069e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.249333895931914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.161124010797357, dt = 0.0015196976530024548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.2%)
patch tree reduce : 1135.00 ns (0.3%)
gen split merge : 1066.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 308.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1785.00 ns (68.3%)
Info: cfl dt = 0.001519704357321424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3331e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.304059758848924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1626437084503594, dt = 0.001519704357321424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 1017.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 310.81 us (94.1%)
LB move op cnt : 0
LB apply : 2.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1767.00 ns (66.8%)
Info: cfl dt = 0.0015197132147939405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2913e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.216915850854399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1641634128076808, dt = 0.0015197132147939405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1209.00 ns (0.4%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.3%)
LB compute : 315.50 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.6%)
Info: cfl dt = 0.0015197242258609346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2651e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.162268575104175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1656831260224747, dt = 0.0015197242258609346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 1193.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1235.00 ns (0.4%)
LB compute : 311.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1961.00 ns (69.2%)
Info: cfl dt = 0.0015197374033955016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4775e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.605661582508079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.167202850248336, dt = 0.0015197374033955016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1277.00 ns (0.4%)
gen split merge : 13.58 us (4.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 300.21 us (90.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (69.6%)
Info: cfl dt = 0.0015197527885220832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3488e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.33731781401354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.168722587651731, dt = 0.0015197527885220832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1201.00 ns (0.4%)
gen split merge : 1207.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 278.09 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1800.00 ns (67.2%)
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 | 7.3683e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.378057091355918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1702423404402533, dt = 0.0015197704287912123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1290.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.3%)
LB compute : 305.41 us (94.4%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1899.00 ns (67.3%)
Info: cfl dt = 0.0015197903739150246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4393e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.526376414088453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1717621108690444, dt = 0.0015197903739150246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.1%)
patch tree reduce : 1181.00 ns (0.4%)
gen split merge : 779.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 284.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (71.8%)
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.4462e+05 | 262144 | 1 | 4.067e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.454011543078575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.173281901242959, dt = 0.0015198126785642275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 1254.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 924.00 ns (0.3%)
LB compute : 295.02 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.4%)
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.3801e+05 | 262144 | 1 | 4.109e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.316257872425014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.174801713921523, dt = 0.00019828607847660606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 1408.00 ns (0.5%)
gen split merge : 1081.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.3%)
LB compute : 270.38 us (89.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1905.00 ns (69.4%)
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.7055e+05 | 262144 | 1 | 3.909e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8259317126540433 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 768.3813743430001 (s) [Godunov][rank=0]
Total running time of the script: (12 minutes 51.723 seconds)
Estimated memory usage: 1183 MB