Note
Go to the end to download the full example code.
Sod tube test with pseudogradient based refinment#
7 import os
8
9 import matplotlib.pyplot as plt
10 import numpy as np
11 from matplotlib.animation import PillowWriter
12 from shamrock.utils.plot import show_image_sequence
13
14 import shamrock
15
16 shamrock.enable_experimental_features()
17
18 # If we use the shamrock executable to run this script instead of the python interpreter,
19 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
20 if not shamrock.sys.is_initialized():
21 shamrock.change_loglevel(1)
22 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
28 multx = 1
29 multy = 1
30 multz = 1
31 max_amr_lev = 2
32 cell_size = 2 << max_amr_lev # refinement is limited to cell_size = 2
33 base = 16
34 gamma = 1.4
35 scale_fact = 1 / (cell_size * base * multx)
39 ctx = shamrock.Context()
40 ctx.pdata_layout_new()
41
42 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
47 cfg = model.gen_default_config()
48 cfg.set_scale_factor(scale_fact)
49
50 cfg.set_eos_gamma(gamma)
51 cfg.set_Csafe(0.3)
52 cfg.set_boundary_condition("x", "reflective")
53 cfg.set_boundary_condition("y", "reflective")
54 cfg.set_boundary_condition("z", "reflective")
55 cfg.set_riemann_solver_hllc()
56 cfg.set_amr_mode_old(False)
57
58
59 cfg.set_slope_lim_minmod()
60 cfg.set_face_time_interpolation(True)
61
62 err_min = 0.25
63 err_max = 0.15
64
65 cfg.set_amr_mode_pseudo_gradient_based(error_min=err_min, error_max=err_max)
66
67 mass_crit = 1e-6 * 5 * 2 * 2
68 # cfg.set_amr_mode_density_based(crit_mass=mass_crit)
69
70
71 crit_refin = 0.1
72 crit_coars = 0.2
73 # cfg.set_amr_mode_second_order_derivative_based(crit_min=crit_refin, crit_max=crit_coars)
74 model.set_solver_config(cfg)
75
76
77 model.init_scheduler(int(1e7), 1)
78 model.make_base_grid(
79 (0, 0, 0), (cell_size, cell_size, cell_size), (base * multx, base * multy, base * multz)
80 )
81
82
83 def rho_map(rmin, rmax):
84
85 x, y, z = rmin
86 if y < 0.5:
87 return 1
88 else:
89 return 0.125
90
91
92 etot_L = 1.0 / (gamma - 1)
93 etot_R = 0.1 / (gamma - 1)
94
95
96 def rhoetot_map(rmin, rmax):
97 x, y, z = rmin
98 if y < 0.5:
99 return etot_L
100 else:
101 return etot_R
102
103
104 def rhovel_map(rmin, rmax):
105 return (0, 0, 0)
106
107
108 model.set_field_value_lambda_f64("rho", rho_map)
109 model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
110 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
---------------------------- WARNING ----------------------------
Warning: Experimental features are enabled
-----------------------------------------------------------------
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 4.02 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 : 4.76 us (63.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (0.1%)
patch tree reduce : 941.00 ns (0.1%)
gen split merge : 1.11 us (0.1%)
split / merge op : 0/0
apply split merge : 1.06 us (0.1%)
LB compute : 920.19 us (98.8%)
LB move op cnt : 0
LB apply : 3.86 us (0.4%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
116 def convert_to_cell_coords(dic):
117
118 cmin = dic["cell_min"]
119 cmax = dic["cell_max"]
120
121 xmin = []
122 ymin = []
123 zmin = []
124 xmax = []
125 ymax = []
126 zmax = []
127
128 for i in range(len(cmin)):
129 m, M = cmin[i], cmax[i]
130
131 mx, my, mz = m
132 Mx, My, Mz = M
133
134 for j in range(8):
135 a, b = model.get_cell_coords(((mx, my, mz), (Mx, My, Mz)), j)
136
137 x, y, z = a
138 xmin.append(x)
139 ymin.append(y)
140 zmin.append(z)
141
142 x, y, z = b
143 xmax.append(x)
144 ymax.append(y)
145 zmax.append(z)
146
147 dic["xmin"] = np.array(xmin)
148 dic["ymin"] = np.array(ymin)
149 dic["zmin"] = np.array(zmin)
150 dic["xmax"] = np.array(xmax)
151 dic["ymax"] = np.array(ymax)
152 dic["zmax"] = np.array(zmax)
153
154 return dic
155
156
157 xref = 0.5
158 xrange = 0.5
159 sod = shamrock.phys.SodTube(gamma=gamma, rho_1=1, P_1=1, rho_5=0.125, P_5=0.1)
160
161
162 def analysis(i_snapshot):
163 global dX0
164 dic = convert_to_cell_coords(ctx.collect_data())
165 if i_snapshot == 0:
166 dX0 = dic["ymax"][0] - dic["ymin"][0]
167
168 t = model.get_time()
169
170 X = []
171 dX = []
172 rho = []
173 rhovelx = []
174 rhoetot = []
175
176 for i in range(len(dic["ymin"])):
177 X.append(dic["ymin"][i])
178 dX.append(dic["ymax"][i] - dic["ymin"][i])
179 rho.append(dic["rho"][i])
180 rhovelx.append(dic["rhovel"][i][1])
181 rhoetot.append(dic["rhoetot"][i])
182
183 X = np.array(X)
184 dX = np.array(dX)
185 rho = np.array(rho)
186 rhovelx = np.array(rhovelx)
187 rhoetot = np.array(rhoetot)
188
189 keep = (np.array(dic["xmin"]) < 0.01) & (np.array(dic["zmin"]) < 0.01)
190 print("cell count on line: ", keep.sum())
191 X = X[keep]
192 dX = dX[keep]
193 rho = rho[keep]
194 rhovelx = rhovelx[keep]
195 rhoetot = rhoetot[keep]
196
197 vx = rhovelx / rho
198
199 fig, axs = plt.subplots(nrows=1, ncols=1, figsize=(9, 6), dpi=125)
200
201 ax1 = plt.gca()
202 ax2 = ax1.twinx()
203
204 l_0 = np.log2(base * 2)
205
206 l = -np.log2(dX / dX0) + l_0
207
208 ax1.scatter(X, rho, rasterized=True, s=12 * np.ones(X.shape), label="rho")
209 ax1.scatter(X, vx, rasterized=True, s=12 * np.ones(X.shape), label="v")
210 ax1.scatter(
211 X,
212 (rhoetot - 0.5 * rho * (vx**2)) * (gamma - 1),
213 rasterized=True,
214 s=12 * np.ones(X.shape),
215 label="P",
216 )
217 idx = np.argsort(X)
218 ax2.plot(
219 X[idx],
220 l[idx],
221 color="purple",
222 marker="D",
223 linewidth=2.0,
224 ls="-.",
225 label="AMR level",
226 rasterized=True,
227 )
228 # plt.scatter(X,rhoetot, rasterized=True,label="rhoetot")
229 ax1.legend(loc=0)
230 ax2.legend(loc=0)
231 ax1.grid()
232
233 #### add analytical soluce
234 arr_x = np.linspace(xref - xrange, xref + xrange, 1000)
235
236 arr_rho = []
237 arr_P = []
238 arr_vx = []
239
240 for i in range(len(arr_x)):
241 x_ = arr_x[i] - xref
242
243 _rho, _vx, _P = sod.get_value(t, x_)
244 arr_rho.append(_rho)
245 arr_vx.append(_vx)
246 arr_P.append(_P)
247
248 ax1.plot(arr_x, arr_rho, ls="--", lw=2.0, alpha=0.7, color="black", label="analytic")
249 ax1.plot(arr_x, arr_vx, ls="--", lw=2.0, alpha=0.7, color="black")
250 ax1.plot(arr_x, arr_P, ls="--", lw=2.0, alpha=0.7, color="black")
251 ax2.set_ylabel("AMR level")
252 ax2.set_autoscale_on(False)
253 ax2.set_ylim(0.5, l_0 + max_amr_lev + 0.5)
254 ax1.set_xlim(-0.05, 1.05)
255 plt.title(f"Threshold = {err_max}, derefinement factor = {err_min}")
256 plt.savefig(f"_to_trash/sod_tube_amr_{i_snapshot:04d}.png")
257 plt.close()
262 if shamrock.sys.world_rank() == 0:
263 os.makedirs("_to_trash", exist_ok=True)
264
265 t_snapshot = np.linspace(0, 0.245, 120).tolist()
266
267 for i_snapshot, t_target in enumerate(t_snapshot):
268 model.evolve_until(t_target)
269 analysis(i_snapshot)
Info: time since start : 10.058740863 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 32
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.30 us (2.7%)
patch tree reduce : 6.06 us (1.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 407.07 us (90.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (70.8%)
Info: cfl dt = 0.002641107046026614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5626e+05 | 32768 | 1 | 9.198e-02 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.002058823529411765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.5%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.44 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 232.61 us (91.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3584
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 384
Derefinement 2:1 balance converge in 1 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 384
Will refine 512 blocks
Info: process block count = 7680 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 2688 new block count = 4992 [AMR Grid][rank=0]
Info: cfl dt = 0.001226861736450654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5215e+05 | 39936 | 1 | 8.832e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.91478649232873 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 10.587155614 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 24
amr::Godunov: t = 0.002058823529411765, dt = 0.001226861736450654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4992.0 min = 4992.0 factor = 1
- strategy "round robin" : max = 4742.4 min = 4742.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4992
max = 4992
avg = 4992
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.58 us (3.3%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 353.19 us (92.6%)
LB move op cnt : 0
LB apply : 4.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (74.3%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 1920
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 32
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 16
Will refine 3392 blocks
Info: process block count = 28736 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 112 new block count = 28624 [AMR Grid][rank=0]
Info: cfl dt = 0.0005449028374105425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.0668e+06 | 228992 | 1 | 1.108e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.86447557529146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003285685265862419, dt = 0.0005449028374105425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 255.27 us (92.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12240
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000511419707079674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1088e+05 | 228992 | 1 | 3.749e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.2330930182907895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038305881032729616, dt = 0.0002870589555505681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 300.96 us (93.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12240
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000497912687916334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5307e+05 | 228992 | 1 | 3.041e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.398507610389959 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 11.712777066000001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.00411764705882353, dt = 0.000497912687916334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.33 us (3.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 315.97 us (92.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12240
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00047918109237287754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8239e+05 | 228992 | 1 | 2.927e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.124339575236542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046155597467398635, dt = 0.00047918109237287754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 307.62 us (93.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12240
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000465105238841109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0384e+05 | 228992 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.30221556763528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050947408391127415, dt = 0.000465105238841109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.1%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 306.53 us (93.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12240
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00045414257953868407 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 228992 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.358328775767106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00555984607795385, dt = 0.00045414257953868407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 321.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8144
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00044538177105184906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2621e+05 | 228992 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.184863807728478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006013988657492534, dt = 0.00016248193074276055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.0%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 300.56 us (93.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8144
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004426272656990621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9124e+05 | 228992 | 1 | 2.894e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0211284368167974 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 14.070363079000002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.0061764705882352946, dt = 0.0004426272656990621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.54 us (3.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 339.50 us (92.4%)
LB move op cnt : 0
LB apply : 4.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (72.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8144
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000435996880620803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6300e+05 | 228992 | 1 | 3.001e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.3093942985111475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006619097853934356, dt = 0.000435996880620803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.4%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 1.51 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 432.68 us (95.1%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8144
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00043051739643736573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8362e+05 | 228992 | 1 | 2.922e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.37122391927596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007055094734555159, dt = 0.00043051739643736573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.62 us (93.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8144
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004259753563341708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9267e+05 | 228992 | 1 | 2.889e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.364932027086615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007485612130992525, dt = 0.0004259753563341708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 321.34 us (93.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004221938936843558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9893e+05 | 228992 | 1 | 2.866e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.3502835120122345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007911587487326696, dt = 0.0003237066303203636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 328.27 us (93.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00041972810206723337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0225e+05 | 228992 | 1 | 2.854e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.082671089967153 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 16.353575275 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.00823529411764706, dt = 0.00041972810206723337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.74 us (3.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 299.75 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00041698222644026285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5743e+05 | 228992 | 1 | 3.023e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.997954695713565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008655022219714292, dt = 0.00041698222644026285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 264.12 us (92.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004146946990585749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9765e+05 | 228992 | 1 | 2.871e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.228914821300232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072004446154554, dt = 0.0004146946990585749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 329.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004127959079597321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0522e+05 | 228992 | 1 | 2.844e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.249601120265632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00948669914521313, dt = 0.0004127959079597321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 303.93 us (93.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004112288938086294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0230e+05 | 228992 | 1 | 2.854e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.206594968842422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009899495053172861, dt = 0.0003946225938859637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 307.96 us (93.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00040999331224722465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9841e+05 | 228992 | 1 | 2.868e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.953247194327283 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 18.622561723 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.010294117647058825, dt = 0.00040999331224722465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.25 us (3.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 330.72 us (92.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004089474321468843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7219e+05 | 228992 | 1 | 3.407e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.332648965461939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01070411095930605, dt = 0.0004089474321468843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.6%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 365.78 us (94.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004081140500198829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9303e+05 | 228992 | 1 | 2.888e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0984615292746955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011113058391452935, dt = 0.0004081140500198829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 272.35 us (92.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0004059259696704274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9417e+05 | 228992 | 1 | 2.883e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.095405333077985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011521172441472818, dt = 0.0004059259696704274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 20.10 us (6.5%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 270.54 us (87.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00040243940572781136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0516e+05 | 228992 | 1 | 2.844e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.138217017790997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011927098411143245, dt = 0.00040243940572781136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 326.04 us (93.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00039941490570355584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5867e+05 | 228992 | 1 | 3.477e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.16727812426496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012329537816871057, dt = 2.340335959953241e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.8%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 337.99 us (93.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00039925849245302046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9643e+05 | 228992 | 1 | 2.875e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.29302869123123254 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 21.284537221 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.012352941176470589, dt = 0.00039925849245302046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.62 us (3.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 340.28 us (92.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003966819962311421 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 228992 | 1 | 3.102e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.633053564795612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01275219966892361, dt = 0.0003966819962311421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 293.94 us (93.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003944994598759924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9627e+05 | 228992 | 1 | 2.876e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.965740449637067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013148881665154752, dt = 0.0003944994598759924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 316.27 us (93.3%)
LB move op cnt : 0
LB apply : 4.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003926690824698035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7515e+05 | 228992 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.187262944753962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013543381125030745, dt = 0.0003926690824698035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.0%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 309.04 us (93.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00039113658923681493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0039e+05 | 228992 | 1 | 2.861e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.94095677526991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013936050207500548, dt = 0.00039113658923681493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 323.07 us (93.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003897957505371808 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7741e+05 | 228992 | 1 | 2.946e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.780389500226177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014327186796737362, dt = 8.45779091449908e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 333.54 us (93.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003895381550770131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0979e+05 | 228992 | 1 | 2.828e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0767453357624388 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 23.916899587000003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.014411764705882353, dt = 0.0003895381550770131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.52 us (3.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.35 us (92.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00038840214945093745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1611e+05 | 228992 | 1 | 2.806e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.997794525855625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014801302860959367, dt = 0.00038840214945093745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 354.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4048
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00038741702918901983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9773e+05 | 228992 | 1 | 2.871e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.870989201228084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015189705010410304, dt = 0.00038741702918901983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.1%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.37 us (93.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003865695467610678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9009e+05 | 228992 | 1 | 2.898e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.812138740866869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015577122039599324, dt = 0.0003865695467610678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 278.58 us (92.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003858480706838277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1054e+05 | 228992 | 1 | 2.825e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.925887555096927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015963691586360393, dt = 0.0003858480706838277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 264.28 us (92.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003852423443369302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0405e+05 | 228992 | 1 | 2.848e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8772943812079905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01634953965704422, dt = 0.00012104857824989795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 308.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003850820719369717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8325e+05 | 228992 | 1 | 2.924e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.49053261482795 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 26.467204482000003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.01647058823529412, dt = 0.0003850820719369717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.25 us (3.5%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 323.93 us (92.2%)
LB move op cnt : 0
LB apply : 4.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00038461381025430046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8164e+05 | 228992 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.126592935721554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01685567030723109, dt = 0.00038461381025430046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 286.56 us (92.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003842426394316403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0826e+05 | 228992 | 1 | 2.833e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.887148989245187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01724028411748539, dt = 0.0003842426394316403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 268.33 us (92.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003839620868196155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0047e+05 | 228992 | 1 | 2.861e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.83537890751763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01762452675691703, dt = 0.0003839620868196155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 273.52 us (92.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003837659596390694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9756e+05 | 228992 | 1 | 2.871e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.814313835263067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018008488843736646, dt = 0.0003837659596390694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.0%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 318.50 us (93.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00038364843782747994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0870e+05 | 228992 | 1 | 2.832e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.879064118586133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018392254803375717, dt = 0.00013715696133016764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 268.37 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003836293614616213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0676e+05 | 228992 | 1 | 2.838e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.739571217101496 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 29.062726443000003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.018529411764705885, dt = 0.0003836293614616213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.17 us (3.3%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 344.84 us (92.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00038255086489568806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6113e+05 | 228992 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.987338136712092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018913041126167505, dt = 0.00038255086489568806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.3%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 266.93 us (92.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003814508763327871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5497e+05 | 228992 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.939057743823633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019295591991063194, dt = 0.0003814508763327871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 286.69 us (92.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003805126339689685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6848e+05 | 228992 | 1 | 2.980e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.608455746808278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01967704286739598, dt = 0.0003805126339689685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 302.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3024
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 334
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003797215807719247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0852e+05 | 228992 | 1 | 2.832e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.836593745137833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020057555501364947, dt = 0.0003797215807719247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 286.76 us (93.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003790648922748401 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1295e+05 | 228992 | 1 | 2.817e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.853009860540765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02043727708213687, dt = 0.0001509582119807798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 312.02 us (93.2%)
LB move op cnt : 0
LB apply : 4.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037884526298036177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0886e+05 | 228992 | 1 | 2.831e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9195977882217456 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 31.749426079000003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.02058823529411765, dt = 0.00037884526298036177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.38 us (3.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 317.47 us (92.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037835699183976385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7955e+05 | 228992 | 1 | 2.937e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.642895574491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020967080557098013, dt = 0.00037835699183976385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 268.73 us (92.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779777709164857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5932e+05 | 228992 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.921738427947514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021345437548937776, dt = 0.0003779777709164857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.1%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 327.42 us (93.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000377698908010337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7969e+05 | 228992 | 1 | 2.937e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.6330753848772845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02172341531985426, dt = 0.000377698908010337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.9%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 316.40 us (93.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003775125901590242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9106e+05 | 228992 | 1 | 2.895e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.697197869193595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022101114227864597, dt = 0.0003775125901590242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.9%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 1.55 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 356.92 us (93.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003774117440631352 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1066e+05 | 228992 | 1 | 2.825e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.811191662843609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022478626818023623, dt = 0.00016843200550578988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 303.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037739855151623484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1981e+05 | 228992 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9060008094024168 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 34.41507428 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.022647058823529412, dt = 0.00037739855151623484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.19 us (3.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 334.61 us (92.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003772079330128081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9714e+05 | 228992 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.136232229965401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02302445737504565, dt = 0.0003772079330128081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (0.2%)
patch tree reduce : 2.03 us (0.1%)
gen split merge : 1.25 us (0.0%)
split / merge op : 0/0
apply split merge : 1.10 us (0.0%)
LB compute : 3.38 ms (99.3%)
LB move op cnt : 0
LB apply : 4.69 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (75.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003759420339150241 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2362e+05 | 228992 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6981497419092313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023401665308058456, dt = 0.0003759420339150241
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.4%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 261.34 us (92.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037484962404946826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1307e+05 | 228992 | 1 | 2.816e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.805386722133153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377760734197348, dt = 0.00037484962404946826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 278.08 us (92.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037391530238571597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1934e+05 | 228992 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.239113570382192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02415245696602295, dt = 0.00037391530238571597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 339.64 us (93.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037312534765088554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0452e+05 | 228992 | 1 | 2.846e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.729270659373325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024526372268408664, dt = 0.00017951008453251371
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 327.93 us (93.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037279880102233676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0128e+05 | 228992 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9790783369219676 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 37.364623518 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.024705882352941178, dt = 0.00037279880102233676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.53 us (3.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 329.64 us (92.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003722030862829876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0302e+05 | 228992 | 1 | 2.852e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.706330240309318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025078681153963514, dt = 0.0003722030862829876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 283.57 us (92.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003717271552677904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2367e+05 | 228992 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.234508047054222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025450884240246503, dt = 0.0003717271552677904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 335.10 us (93.9%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037136139490756673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9686e+05 | 228992 | 1 | 2.874e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.656788681207101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025822611395514294, dt = 0.00037136139490756673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 304.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037109710355042694 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 228992 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.15962728046589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02619397279042186, dt = 0.00037109710355042694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 262.25 us (92.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.000370926373089888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6767e+05 | 228992 | 1 | 2.983e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.478596219734839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026565069893972285, dt = 0.00019963598838065866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 283.20 us (92.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037087502087280083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9951e+05 | 228992 | 1 | 2.864e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.509265714955672 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 40.001661903000006 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 68
amr::Godunov: t = 0.026764705882352944, dt = 0.00037087502087280083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.21 us (3.4%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 336.74 us (92.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.0003708346922348676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0697e+05 | 228992 | 1 | 2.838e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.70508010566994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027135580903225744, dt = 0.0003708346922348676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 276.98 us (92.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (70.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 28624 [AMRGrid][rank=0]
Info: cfl dt = 0.00037087350066167414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0337e+05 | 228992 | 1 | 2.850e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.683575491175455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02750641559546061, dt = 0.00037087350066167414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 28624.0 min = 28624.0 factor = 1
- strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 28624
max = 28624
avg = 28624
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 326.52 us (93.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 78
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1024 blocks
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00037069406604140723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.5312e+05 | 286336 | 1 | 3.004e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.444277219186068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027877289096122283, dt = 0.00037069406604140723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 273.82 us (93.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.000369664182738742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0690e+05 | 286336 | 1 | 4.051e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.294584644214555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02824798316216369, dt = 0.000369664182738742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 319.36 us (93.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 2000
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003687828219999001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7415e+05 | 286336 | 1 | 3.699e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.59799449299686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028617647344902433, dt = 0.00020588206686227364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 318.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (74.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036835637618513905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1217e+05 | 286336 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.102276278487309 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 42.853831649 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 82
amr::Godunov: t = 0.028823529411764706, dt = 0.00036835637618513905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.81 us (3.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 328.05 us (92.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036768112549298977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2386e+05 | 286336 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8154733889033503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029191885787949845, dt = 0.00036768112549298977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 302.11 us (93.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003671243948869615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1477e+05 | 286336 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.766463999949495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029559566913442834, dt = 0.0003671243948869615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 314.90 us (93.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036667698307536463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1644e+05 | 286336 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7684680697773256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029926691308329794, dt = 0.00036667698307536463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 324.19 us (93.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (68.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036633025791658414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3119e+05 | 286336 | 1 | 3.445e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.831886045258789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030293368291405158, dt = 0.00036633025791658414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 328.18 us (92.4%)
LB move op cnt : 0
LB apply : 6.61 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036607619185651734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2037e+05 | 286336 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7784278976122443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030659698549321743, dt = 0.00022265439185472843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 283.08 us (92.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003659677523698919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1764e+05 | 286336 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2888595634143534 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 45.966861635 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 82
amr::Godunov: t = 0.030882352941176472, dt = 0.0003659677523698919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.15 us (3.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 309.64 us (92.0%)
LB move op cnt : 0
LB apply : 4.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036584987992776765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3062e+05 | 286336 | 1 | 3.447e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8218275383062776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031248320693546362, dt = 0.00036584987992776765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 345.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003658092668748388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7650e+05 | 286336 | 1 | 3.687e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.571687515460751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03161417057347413, dt = 0.0003658092668748388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 308.50 us (93.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.00036583738887369604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1783e+05 | 286336 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761359863459708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03197997984034897, dt = 0.00036583738887369604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 322.74 us (93.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003659270905099697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5783e+05 | 286336 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.485657488168483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03234581722922267, dt = 0.0003659270905099697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 327.62 us (93.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (76.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 35792 [AMRGrid][rank=0]
Info: cfl dt = 0.0003658843770231647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2771e+05 | 286336 | 1 | 3.459e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.808041723211785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03271174431973264, dt = 0.00022943215085560048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 35792.0 min = 35792.0 factor = 1
- strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 35792
max = 35792
avg = 35792
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 17.65 us (5.2%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 305.44 us (89.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.2%)
Refinement 2:1 balance converged in 4 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6096
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1360 blocks
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003653683325421631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0161e+06 | 362496 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3151322776159553 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 49.134189596000006 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.03294117647058824, dt = 0.0003653683325421631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.80 us (3.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 323.64 us (92.2%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003646378078004751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1466e+05 | 362496 | 1 | 5.072e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5931575960444646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0333065448031304, dt = 0.0003646378078004751
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 302.88 us (93.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036402253513937913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3122e+05 | 362496 | 1 | 4.361e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.010090554399352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033671182610930876, dt = 0.00036402253513937913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.3%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 282.05 us (92.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003635128212819883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3542e+05 | 362496 | 1 | 4.339e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.02018574767478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03403520514607025, dt = 0.0003635128212819883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 275.57 us (92.4%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003631002620639588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4545e+05 | 362496 | 1 | 4.288e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.052156268068482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439871796735224, dt = 0.0003631002620639588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 275.10 us (92.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (74.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003627768875555552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3393e+05 | 362496 | 1 | 4.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.007158148432924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0347618182294162, dt = 0.00023818177058380213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.2%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 273.81 us (92.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036261327543712566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3736e+05 | 362496 | 1 | 4.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.980703278604458 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.027726570000006 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.035, dt = 0.00036261327543712566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.31 us (3.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 335.90 us (92.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003624217075550658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3506e+05 | 362496 | 1 | 4.341e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0071892254662305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035362613275437126, dt = 0.0003624217075550658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 322.50 us (93.3%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623040073673939 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2915e+05 | 362496 | 1 | 4.372e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.984343995527441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03572503498299219, dt = 0.0003623040073673939
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.9%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 322.60 us (93.4%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036225180721335466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3278e+05 | 362496 | 1 | 4.353e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9964331484605693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03608733899035958, dt = 0.00036225180721335466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.9%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 339.81 us (93.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036225807181621943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9154e+05 | 362496 | 1 | 4.580e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8476412719569395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036449590797572935, dt = 0.00036225807181621943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 325.81 us (93.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (72.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036231686206008245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7212e+05 | 362496 | 1 | 4.695e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7778146156427437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03681184886938915, dt = 0.0002469746600226169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.1%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 324.24 us (93.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (72.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623867031799442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3032e+05 | 362496 | 1 | 4.366e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0365536960826724 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 56.928058023000006 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.03705882352941177, dt = 0.0003623867031799442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 31.02 us (8.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 316.33 us (87.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003625226838030968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9161e+05 | 362496 | 1 | 4.579e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8489262437870395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03742121023259171, dt = 0.0003625226838030968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 280.55 us (92.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8448
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003620336313931714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4715e+05 | 362496 | 1 | 4.279e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0499654213780723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03778373291639481, dt = 0.0003620336313931714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 271.70 us (92.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12544
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036144955935755893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4445e+05 | 362496 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0361376798535202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03814576654778798, dt = 0.00036144955935755893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 293.54 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12544
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 416
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609634894794139 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4168e+05 | 362496 | 1 | 4.307e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0213145961211705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03850721610714554, dt = 0.0003609634894794139
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.1%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 285.99 us (92.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605624043057299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4042e+05 | 362496 | 1 | 4.313e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0127110551385825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038868179596624954, dt = 0.00024946746219858124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 272.20 us (92.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036033424958619993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4198e+05 | 362496 | 1 | 4.305e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.086004966084706 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 60.77531638600001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.039117647058823535, dt = 0.00036033424958619993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.13 us (3.3%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 336.35 us (92.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00036006074057583405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3869e+05 | 362496 | 1 | 4.322e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.001263605833308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03947798130840974, dt = 0.00036006074057583405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.8%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 326.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035985401139664345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4993e+05 | 362496 | 1 | 4.834e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.681623418101333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03983804204898557, dt = 0.00035985401139664345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 318.88 us (93.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (71.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035970829737984973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4311e+05 | 362496 | 1 | 4.300e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.013067866935135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04019789606038221, dt = 0.00035970829737984973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.9%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 340.41 us (93.7%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596193726538538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1221e+05 | 362496 | 1 | 4.463e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.901478692158464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04055760435776206, dt = 0.0003596193726538538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.0%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 320.10 us (93.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035958331744526497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4005e+05 | 362496 | 1 | 4.315e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0001871483154483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04091722373041591, dt = 0.0002592468578193896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 310.59 us (93.2%)
LB move op cnt : 0
LB apply : 4.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11520
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035958889320946634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4174e+05 | 362496 | 1 | 4.307e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.167153822766476 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 64.66759950800001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.0411764705882353, dt = 0.00035958889320946634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.24 us (3.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 321.59 us (92.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.000359630575852464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1468e+05 | 362496 | 1 | 4.450e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9093200852925265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041536059481444766, dt = 0.000359630575852464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 301.10 us (93.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597113952132236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3634e+05 | 362496 | 1 | 4.334e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.987023368865553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04189569005729723, dt = 0.0003597113952132236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 347.40 us (93.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.000359827550460816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3348e+05 | 362496 | 1 | 4.349e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.977486190078362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04225540145251045, dt = 0.000359827550460816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 326.22 us (93.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (73.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035966422807797544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9657e+05 | 362496 | 1 | 4.551e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8465249242773254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04261522900297127, dt = 0.00035966422807797544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 327.78 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591732485457981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3759e+05 | 362496 | 1 | 4.328e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9917745999126204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04297489323104924, dt = 0.0002604008865978169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 307.24 us (93.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (61.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588734453623591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3933e+05 | 362496 | 1 | 4.319e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.170573888002003 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 68.54262302100001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.04323529411764706, dt = 0.0003588734453623591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.65 us (3.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 312.45 us (91.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035852108001615255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3019e+05 | 362496 | 1 | 4.366e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9588011516160924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04359416756300942, dt = 0.00035852108001615255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 322.75 us (93.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582393922066127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2059e+05 | 362496 | 1 | 4.418e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.921728236366886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043952688643025574, dt = 0.0003582393922066127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 325.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580190626439882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3621e+05 | 362496 | 1 | 4.335e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.975001253966147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.044310928035232185, dt = 0.0003580190626439882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 3.42 us (1.0%)
gen split merge : 2.69 us (0.8%)
split / merge op : 0/0
apply split merge : 2.10 us (0.6%)
LB compute : 325.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578529719634193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3266e+05 | 362496 | 1 | 4.353e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9605721518307604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04466894709787617, dt = 0.0003578529719634193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 289.39 us (92.7%)
LB move op cnt : 0
LB apply : 4.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577377997473125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0545e+05 | 362496 | 1 | 4.501e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.862488482889725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04502680006983959, dt = 0.00026731757721923377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 287.52 us (93.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576842445245665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3995e+05 | 362496 | 1 | 4.316e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.229863869976763 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 72.420741289 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 102
amr::Godunov: t = 0.045294117647058825, dt = 0.0003576842445245665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.57 us (3.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 346.55 us (92.7%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035764644401163484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5187e+05 | 362496 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.026030112545326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04565180189158339, dt = 0.00035764644401163484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 329.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 160
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 45312 [AMRGrid][rank=0]
Info: cfl dt = 0.00035764657069692563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3719e+05 | 362496 | 1 | 4.330e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.973553648831077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046009448335595025, dt = 0.00035764657069692563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 45312.0 min = 45312.0 factor = 1
- strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 45312
max = 45312
avg = 45312
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 342.38 us (93.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (70.7%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14592
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1120
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1280 blocks
Info: process block count = 54272 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 47104 [AMR Grid][rank=0]
Info: cfl dt = 0.00035971071748902073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4605e+05 | 376832 | 1 | 4.454e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8907184446262795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04636709490629195, dt = 0.00035971071748902073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.1%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 270.88 us (92.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (64.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035899121287653304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0514e+05 | 376832 | 1 | 4.680e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7668275021742663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04672680562378097, dt = 0.00035899121287653304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 295.53 us (92.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (70.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584074620664653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4234e+05 | 376832 | 1 | 4.474e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8888516587573934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0470857968366575, dt = 0.00026714433981309127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 324.32 us (93.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580558467825168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4318e+05 | 376832 | 1 | 4.469e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1518979066466453 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 76.33773802500001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.04735294117647059, dt = 0.0003580558467825168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.08 us (3.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 340.27 us (92.7%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035766476030396567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0609e+05 | 376832 | 1 | 4.675e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7573375557336517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047710997023253106, dt = 0.00035766476030396567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 276.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035736299167183076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4206e+05 | 376832 | 1 | 4.475e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.877223868300664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04806866178355707, dt = 0.00035736299167183076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 300.53 us (93.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571338931451705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4221e+05 | 376832 | 1 | 4.474e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8753149403572764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0484260247752289, dt = 0.0003571338931451705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 329.06 us (93.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569677373997619 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4096e+05 | 376832 | 1 | 4.481e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8692031178486954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04878315866837407, dt = 0.0003569677373997619
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 333.36 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568562872300004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4122e+05 | 376832 | 1 | 4.480e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8687622035858866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04914012640577383, dt = 0.00027163830010852597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.0%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 321.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680623163808294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3929e+05 | 376832 | 1 | 4.490e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177997083639533 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 80.34358766000001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.049411764705882356, dt = 0.00035680623163808294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.29 us (3.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 299.02 us (91.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035677440045116547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3748e+05 | 376832 | 1 | 4.500e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8547072525419344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04976857093752044, dt = 0.00035677440045116547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 314.72 us (93.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035678042915537916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4613e+05 | 376832 | 1 | 4.454e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.883934457501198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.050125345337971604, dt = 0.00035678042915537916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 324.64 us (93.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035681983959111286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4166e+05 | 376832 | 1 | 4.477e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8687380702163963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05048212576712698, dt = 0.00035681983959111286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 334.14 us (93.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568888102066112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2766e+05 | 376832 | 1 | 4.553e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8213576445542556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.050838945606718096, dt = 0.0003568888102066112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 328.55 us (93.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569840626281722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4317e+05 | 376832 | 1 | 4.469e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.87476792110434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051195834416924706, dt = 0.0002747538183694165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 344.88 us (93.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035707471476171436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4860e+05 | 376832 | 1 | 4.441e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.227418292131493 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 84.495457257 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.05147058823529412, dt = 0.00035707471476171436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.45 us (3.3%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 354.03 us (92.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035721013802036456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3621e+05 | 376832 | 1 | 5.119e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511402370458791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051827662950055836, dt = 0.00035721013802036456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 375.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035731574052762043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4403e+05 | 376832 | 1 | 4.465e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8802979138559994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0521848730880762, dt = 0.00035731574052762043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 369.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700601066855224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4214e+05 | 376832 | 1 | 4.475e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.874689813148932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05254218882860382, dt = 0.00035700601066855224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 308.01 us (93.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567576449477683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4639e+05 | 376832 | 1 | 4.452e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8866785350613355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05289919483927237, dt = 0.0003567576449477683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 324.34 us (93.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565638334975599 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4094e+05 | 376832 | 1 | 4.481e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8661140608881106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05325595248422014, dt = 0.0002734592804857494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 306.55 us (93.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035645033616431634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3755e+05 | 376832 | 1 | 4.499e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1880470336149287 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 88.548511074 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.05352941176470589, dt = 0.00035645033616431634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.72 us (3.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 321.03 us (92.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563376976229281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7724e+05 | 376832 | 1 | 4.848e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.646714753903083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05388586210087021, dt = 0.0003563376976229281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 284.67 us (92.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035626260584560484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4394e+05 | 376832 | 1 | 4.465e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.872934029961901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05424219979849314, dt = 0.00035626260584560484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 320.18 us (93.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035621894573859854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4000e+05 | 376832 | 1 | 4.486e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8589196418271974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05459846240433874, dt = 0.00035621894573859854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 300.81 us (92.9%)
LB move op cnt : 0
LB apply : 4.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562034838758009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4008e+05 | 376832 | 1 | 4.486e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.858845375163471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05495468135007734, dt = 0.0003562034838758009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.9%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 333.69 us (93.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (72.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035621344061386866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4062e+05 | 376832 | 1 | 4.483e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8605718148716117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05531088483395314, dt = 0.00027735046016451326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 2.48 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 326.00 us (93.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562382467095289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4593e+05 | 376832 | 1 | 4.455e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.241399171574996 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 92.57821076100001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.055588235294117654, dt = 0.0003562382467095289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.42 us (3.1%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 369.74 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.000356287930356446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4378e+05 | 376832 | 1 | 4.466e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8716089560305864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05594447354082718, dt = 0.000356287930356446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.8%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 343.49 us (94.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563581049650653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4413e+05 | 376832 | 1 | 4.464e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.873199040194297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05630076147118363, dt = 0.0003563581049650653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 353.06 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564465042672681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2954e+05 | 376832 | 1 | 4.543e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8240966397209273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0566571195761487, dt = 0.0003564465042672681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 330.25 us (93.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565512179540247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4833e+05 | 376832 | 1 | 4.442e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8887913632926066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05701356608041597, dt = 0.0003565512179540247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 314.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565389075700648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4742e+05 | 376832 | 1 | 5.042e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.54589487453774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.057370117298369994, dt = 0.0002769415251594187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 313.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563476712435171 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4439e+05 | 376832 | 1 | 4.463e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.234013640098714 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.64162558800001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.05764705882352941, dt = 0.0003563476712435171
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.26 us (3.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.51 us (92.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561393516755757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4525e+05 | 376832 | 1 | 4.458e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8774743115543697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05800340649477293, dt = 0.0003561393516755757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 279.78 us (92.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035597255083245286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4341e+05 | 376832 | 1 | 4.468e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.86953629569499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05835954584644851, dt = 0.00035597255083245286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 302.54 us (93.5%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035584436799521803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6330e+05 | 376832 | 1 | 4.937e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5957727825517134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05871551839728096, dt = 0.00035584436799521803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 280.71 us (92.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557493995620841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3954e+05 | 376832 | 1 | 5.095e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5140612369367727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05907136276527618, dt = 0.0003557493995620841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.5%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 277.30 us (92.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 352
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556815478223922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4053e+05 | 376832 | 1 | 4.483e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.856614553181575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.059427112164838265, dt = 0.0002787701881029128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 325.83 us (93.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556463745339229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2949e+05 | 376832 | 1 | 4.543e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209072301553548 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.76644908300001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.05970588235294118, dt = 0.0003556463745339229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.30 us (3.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 332.96 us (92.4%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556199115986018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9678e+05 | 376832 | 1 | 4.729e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7071476622672876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060061528727475104, dt = 0.0003556199115986018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 281.36 us (92.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556136444413928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7594e+05 | 376832 | 1 | 4.856e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6361393967772915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06041714863907371, dt = 0.0003556136444413928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 270.67 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556264088811987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4743e+05 | 376832 | 1 | 4.447e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.878972369690202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0607727622835151, dt = 0.0003556264088811987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.53 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 283.75 us (92.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.000355657051184409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3805e+05 | 376832 | 1 | 4.497e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.847192897808511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0611283886923963, dt = 0.000355657051184409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 300.11 us (93.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557038758544485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1072e+05 | 376832 | 1 | 4.648e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7545777128287536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061484045743580705, dt = 0.0002806601387722388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 273.61 us (92.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.000355751929289628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4051e+05 | 376832 | 1 | 5.089e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.985483158275128 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.92143920000001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.061764705882352944, dt = 0.000355751929289628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.66 us (3.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 342.95 us (92.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558241065444589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3489e+05 | 376832 | 1 | 4.514e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.837459214775098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06212045781164257, dt = 0.0003558241065444589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 300.29 us (93.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559088774660252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3913e+05 | 376832 | 1 | 4.491e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.852445436514635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06247628191818703, dt = 0.0003559088774660252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.9%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 333.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558472920770052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7274e+05 | 376832 | 1 | 4.877e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6274071543237594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06283219079565305, dt = 0.0003558472920770052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 282.68 us (92.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556806472470042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4482e+05 | 376832 | 1 | 5.059e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5320480900702425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06318803808773006, dt = 0.0003556806472470042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 300.25 us (92.9%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 16384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1120
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Info: process block count = 47104 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 39936 [AMR Grid][rank=0]
Info: cfl dt = 0.0003608468010980724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7196e+05 | 319488 | 1 | 4.755e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6930813874460116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06354371873497706, dt = 0.00027981067678764515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 39936.0 min = 39936.0 factor = 1
- strategy "round robin" : max = 37939.2 min = 37939.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 39936
max = 39936
avg = 39936
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 283.48 us (93.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9216
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1024 blocks
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601712383709047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.4439e+05 | 376832 | 1 | 3.990e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5244720225565893 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 109.03897802200001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.06382352941176471, dt = 0.0003601712383709047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.98 us (3.8%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 316.21 us (91.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035940135570046216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6936e+05 | 376832 | 1 | 4.898e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6472244784202146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06418370065013561, dt = 0.00035940135570046216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 284.04 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.85 us (93.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035874077628814094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3768e+05 | 376832 | 1 | 4.499e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8761478050784377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06454310200583607, dt = 0.00035874077628814094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 281.02 us (92.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581749464346364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1984e+05 | 376832 | 1 | 4.596e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8097163552183506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06490184278212421, dt = 0.0003581749464346364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.1%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 280.46 us (92.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035769149836772663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4517e+05 | 376832 | 1 | 4.459e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.89197885584099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06526001772855886, dt = 0.00035769149836772663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 285.14 us (92.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035727987954239557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9276e+05 | 376832 | 1 | 4.753e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7089728061759177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06561770922692658, dt = 0.0002646437142498903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 283.34 us (92.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035701938526791504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4570e+05 | 376832 | 1 | 4.456e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.138111867275808 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 113.167310821 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.06588235294117648, dt = 0.00035701938526791504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.91 us (3.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 322.04 us (92.0%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13312
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567117854170316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8193e+05 | 376832 | 1 | 4.819e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6669577341867914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623937232644439, dt = 0.0003567117854170316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 297.51 us (93.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564549777412149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0999e+05 | 376832 | 1 | 4.652e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7602594102893128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06659608411186142, dt = 0.0003564549777412149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.2%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 302.00 us (93.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562426158921052 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 376832 | 1 | 5.095e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5184831167307364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06695253908960264, dt = 0.0003562426158921052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.1%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 326.47 us (93.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035606924842763066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9194e+05 | 376832 | 1 | 4.758e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6952168415122375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06730878170549474, dt = 0.00035606924842763066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.4%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 281.71 us (92.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559301830128228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4596e+05 | 376832 | 1 | 4.454e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8776581810229906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06766485095392237, dt = 0.0002763255166658707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 291.63 us (92.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558448612264485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3645e+05 | 376832 | 1 | 4.505e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2080744405770383 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 117.366706256 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.06794117647058824, dt = 0.0003558448612264485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.75 us (3.3%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 359.98 us (92.7%)
LB move op cnt : 0
LB apply : 4.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035575671748790745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4691e+05 | 376832 | 1 | 4.450e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.879059622735158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06829702133181469, dt = 0.00035575671748790745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 341.51 us (93.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035568959626737046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4282e+05 | 376832 | 1 | 4.471e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.864473815157599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06865277804930259, dt = 0.00035568959626737046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.0%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 311.03 us (93.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556410997851702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3909e+05 | 376832 | 1 | 4.491e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.851246463958146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06900846764556996, dt = 0.0003556410997851702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 332.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556091631432042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4230e+05 | 376832 | 1 | 4.474e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8617778395324853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06936410874535513, dt = 0.0003556091631432042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 1.56 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 281.13 us (92.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555920060635063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4000e+05 | 376832 | 1 | 4.486e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.853703360916241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06971971790849833, dt = 0.00028028209150167405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 318.32 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555884694556184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3766e+05 | 376832 | 1 | 4.499e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2429486567523487 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.41949605500001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.07, dt = 0.0003555884694556184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.40 us (3.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 335.14 us (92.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035559431740497365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3849e+05 | 376832 | 1 | 4.494e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8484092064405324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07035558846945562, dt = 0.00035559431740497365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 318.01 us (93.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556114493498443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3038e+05 | 376832 | 1 | 4.538e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.820883595392556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0707111827868606, dt = 0.0003556114493498443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 280.55 us (92.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563872556084575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3978e+05 | 376832 | 1 | 4.487e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8529788197399184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07106679423621044, dt = 0.00035563872556084575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 280.77 us (92.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556751745676213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4041e+05 | 376832 | 1 | 4.484e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.855311782725345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07142243296177128, dt = 0.0003556751745676213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 264.88 us (92.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8192
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035572001298038485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3688e+05 | 376832 | 1 | 4.503e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8436170710629214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0717781081363389, dt = 0.00028071539307286675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.98 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576109235370217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4175e+05 | 376832 | 1 | 4.477e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257370247027606 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 125.48489442200001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.07205882352941177, dt = 0.00035576109235370217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.92 us (3.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 322.60 us (92.0%)
LB move op cnt : 0
LB apply : 4.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035581918854137907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1251e+05 | 376832 | 1 | 4.638e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7614839641146176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07241458462176548, dt = 0.00035581918854137907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 274.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558839601514521 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4094e+05 | 376832 | 1 | 4.481e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8585846814237463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07277040381030686, dt = 0.0003558839601514521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 337.85 us (93.7%)
LB move op cnt : 0
LB apply : 4.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (71.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035584791293890634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3919e+05 | 376832 | 1 | 4.490e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8531407935432616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0731262877704583, dt = 0.00035584791293890634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.0%)
patch tree reduce : 2.46 us (0.7%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 320.65 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576545820579033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3361e+05 | 376832 | 1 | 4.520e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8338989191000308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07348213568339722, dt = 0.00035576545820579033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.0%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 323.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557014191198011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3738e+05 | 376832 | 1 | 4.500e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.846057466349655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.073837901141603, dt = 0.00027974591722053355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.8%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 338.58 us (93.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556636595429663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3520e+05 | 376832 | 1 | 4.512e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2320710690672727 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 129.583417043 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.07411764705882354, dt = 0.0003556636595429663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.35 us (3.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 306.92 us (91.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556280948221615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3936e+05 | 376832 | 1 | 4.490e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8519628295727815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0744733107183665, dt = 0.0003556280948221615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.8%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 339.49 us (93.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.000355605871625197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3394e+05 | 376832 | 1 | 4.519e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8332464305887703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07482893881318867, dt = 0.000355605871625197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 338.41 us (93.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (73.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555941716002529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4043e+05 | 376832 | 1 | 4.484e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8551149370543016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07518454468481386, dt = 0.0003555941716002529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 322.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555919096308881 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4395e+05 | 376832 | 1 | 4.465e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8670028375182275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07554013885641411, dt = 0.0003555919096308881
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 323.64 us (93.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035559816022864816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4446e+05 | 376832 | 1 | 4.462e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.868701100907239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.075895730766045, dt = 0.000280739822190304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.0%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 299.82 us (93.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560890531985976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3541e+05 | 376832 | 1 | 4.511e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2405713991089358 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 133.833438298 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.0761764705882353, dt = 0.00035560890531985976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.04 us (3.3%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 372.52 us (93.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562845804468034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4623e+05 | 376832 | 1 | 4.453e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.874837920578647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07653207949355516, dt = 0.00035562845804468034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 329.26 us (93.6%)
LB move op cnt : 0
LB apply : 4.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556545569496054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2456e+05 | 376832 | 1 | 4.570e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8013822533560337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07688770795159984, dt = 0.0003556545569496054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 302.74 us (93.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12288
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556859659620352 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6999e+05 | 376832 | 1 | 4.894e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.616193862958661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07724336250854945, dt = 0.0003556859659620352
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 330.53 us (93.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557224547501454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4168e+05 | 376832 | 1 | 4.477e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8600060335243818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07759904847451149, dt = 0.0003557224547501454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.8%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 334.39 us (93.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576378132346403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3517e+05 | 376832 | 1 | 4.512e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8381750129502974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07795477092926163, dt = 0.000280523188385437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 307.90 us (93.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557095871052766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8153e+05 | 376832 | 1 | 4.822e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0944541482640773 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 137.983789596 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.07823529411764707, dt = 0.0003557095871052766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.38 us (3.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 325.15 us (92.1%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562628773979434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4385e+05 | 376832 | 1 | 4.466e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.867577552760852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07859100370475235, dt = 0.00035562628773979434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 324.75 us (93.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035555824896474515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2254e+05 | 376832 | 1 | 4.581e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7945045565959132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07894662999249213, dt = 0.00035555824896474515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 324.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555034909739313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4162e+05 | 376832 | 1 | 4.477e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8587919061895493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07930218824145688, dt = 0.0003555034909739313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 327.98 us (93.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 (65.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035545936129488217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4209e+05 | 376832 | 1 | 4.475e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8599317476686763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07965769173243081, dt = 0.00035545936129488217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 322.07 us (93.5%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554248044059253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4225e+05 | 376832 | 1 | 4.474e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8601266950357807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0800131510937257, dt = 0.0002809665533331368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 320.23 us (93.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035540397343133783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2899e+05 | 376832 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.225135150702793 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 142.066063391 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 104
amr::Godunov: t = 0.08029411764705884, dt = 0.00035540397343133783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.22 us (3.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 339.30 us (92.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.00035538425066600183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2754e+05 | 376832 | 1 | 5.180e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.470226666098792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064952162049017, dt = 0.00035538425066600183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 323.76 us (93.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11264
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 96
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47104 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553717659565238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4322e+05 | 376832 | 1 | 4.469e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8628227490965017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08100490587115618, dt = 0.0003553717659565238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47104.0 min = 47104.0 factor = 1
- strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47104
max = 47104
avg = 47104
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.12 us (93.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15360
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1104
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1344 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.0003621208611760729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4890e+05 | 394752 | 1 | 4.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.751164160313242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0813602776371127, dt = 0.0003621208611760729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 341.20 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003612747808651128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4037e+05 | 394752 | 1 | 4.697e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7752378703094482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08172239849828877, dt = 0.0003612747808651128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.49 us (2.3%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 339.78 us (93.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00036053377967494257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4040e+05 | 394752 | 1 | 4.697e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7688523453242637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08208367327915389, dt = 0.00026926789731671064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.9%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 349.01 us (93.5%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003600452924505299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2051e+05 | 394752 | 1 | 4.811e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0148680778038703 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 146.316393707 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.0823529411764706, dt = 0.0003600452924505299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.13 us (3.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 315.28 us (92.0%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035945549963587435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4295e+05 | 394752 | 1 | 4.683e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7678216118869843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08271298646892113, dt = 0.00035945549963587435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 314.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589376392898259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7970e+05 | 394752 | 1 | 5.063e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.55595170868807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.083072441968557, dt = 0.0003589376392898259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 281.07 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584826924546226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3525e+05 | 394752 | 1 | 4.726e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7340980738713125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08343137960784681, dt = 0.0003584826924546226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 272.60 us (92.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035808289613655235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3992e+05 | 394752 | 1 | 4.700e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7459005191716233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08378986230030144, dt = 0.00035808289613655235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 294.15 us (92.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577315497515271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3249e+05 | 394752 | 1 | 4.742e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.718574663274958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08414794519643799, dt = 0.00026381950944436017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.1%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.53 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 309.80 us (93.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035750233455090667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3517e+05 | 394752 | 1 | 4.727e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.009378492265524 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 150.627322225 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.08441176470588235, dt = 0.00035750233455090667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.35 us (3.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 327.36 us (92.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035722158221676906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3818e+05 | 394752 | 1 | 4.710e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7327301640237502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08476926704043326, dt = 0.00035722158221676906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.8%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 349.63 us (93.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569752025422313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9512e+05 | 394752 | 1 | 4.965e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5902951380928565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08512648862265003, dt = 0.0003569752025422313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.31 us (92.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035675924569753383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3478e+05 | 394752 | 1 | 4.729e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7176168660066002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08548346382519226, dt = 0.00035675924569753383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 307.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035657026924465176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3602e+05 | 394752 | 1 | 4.722e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7200215939743693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08584022307088979, dt = 0.00035657026924465176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.9%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 331.89 us (93.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035640526892249036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4990e+05 | 394752 | 1 | 4.645e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7637005999149737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08619679334013444, dt = 0.00027379489515967637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 293.05 us (92.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (71.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562942001079228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9430e+05 | 394752 | 1 | 4.970e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9832874584755227 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 154.954264646 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.08647058823529412, dt = 0.0003562942001079228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.88 us (3.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 355.18 us (92.5%)
LB move op cnt : 0
LB apply : 4.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035616526778231783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2069e+05 | 394752 | 1 | 4.810e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.66666065220657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08682688243540204, dt = 0.00035616526778231783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.75 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035605382752641664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3731e+05 | 394752 | 1 | 4.715e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7196606468192157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08718304770318436, dt = 0.00035605382752641664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 299.39 us (92.9%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035595805418532845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3369e+05 | 394752 | 1 | 4.735e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.707055941120221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08753910153071078, dt = 0.00035595805418532845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.3%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 269.54 us (92.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.49 us (94.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035587634397788793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4814e+05 | 394752 | 1 | 4.654e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.753237112973522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0878950595848961, dt = 0.00035587634397788793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 317.57 us (93.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (62.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035580728607335297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4249e+05 | 394752 | 1 | 4.686e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.734259222282073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.088250935928874, dt = 0.00027847583583189006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.3%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 274.87 us (92.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557606347074441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7651e+05 | 394752 | 1 | 5.084e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9720252676376897 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 159.304890037 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.08852941176470588, dt = 0.0003557606347074441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.49 us (3.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 316.52 us (92.0%)
LB move op cnt : 0
LB apply : 4.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035570845399791916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4420e+05 | 394752 | 1 | 4.676e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7389433181424616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08888517239941333, dt = 0.00035570845399791916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 354.39 us (93.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035566447233710666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4850e+05 | 394752 | 1 | 4.652e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.752476893356075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08924088085341125, dt = 0.00035566447233710666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 328.14 us (93.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (63.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10432
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556279434846403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3736e+05 | 394752 | 1 | 4.714e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.715995891612106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08959654532574836, dt = 0.0003556279434846403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.9%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 324.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555982111982307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9751e+05 | 394752 | 1 | 4.950e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5864753559288016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.089952173269233, dt = 0.0003555982111982307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.9%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 325.49 us (93.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14528
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 656
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035557469807683136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4272e+05 | 394752 | 1 | 4.684e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.732878901934319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09030777148043122, dt = 0.00028046381368643236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.1%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 283.54 us (92.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035556040287264523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3329e+05 | 394752 | 1 | 5.383e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.875567609612741 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 163.686814666 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.09058823529411765, dt = 0.00035556040287264523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.62 us (3.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 333.02 us (92.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555467749453669 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1142e+05 | 394752 | 1 | 5.549e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.30683548448791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09094379569699029, dt = 0.0003555467749453669
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.0%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 327.31 us (93.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555381067195476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1514e+05 | 394752 | 1 | 4.843e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6430643079091687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09129934247193566, dt = 0.0003555381067195476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 343.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035553404255484367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1683e+05 | 394752 | 1 | 4.833e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6484879167483015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09165488057865522, dt = 0.00035553404255484367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.0%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 300.84 us (93.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035553426816793676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5117e+05 | 394752 | 1 | 4.638e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7597841073909155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09201041462121005, dt = 0.00035553426816793676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 325.10 us (93.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555385059504422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4539e+05 | 394752 | 1 | 4.669e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7410378695803304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09236594888937799, dt = 0.0002811099341514245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 330.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555446677684388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4506e+05 | 394752 | 1 | 5.298e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9100561890586365 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 168.147646439 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.09264705882352942, dt = 0.0003555446677684388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.36 us (3.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 326.95 us (92.2%)
LB move op cnt : 0
LB apply : 4.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000355555649605764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4652e+05 | 394752 | 1 | 4.663e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.744797557189136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09300260349129785, dt = 0.000355555649605764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 348.89 us (93.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555701163870562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0722e+05 | 394752 | 1 | 4.890e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.617433213368393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09335815914090362, dt = 0.0003555701163870562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 295.19 us (93.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555878438360595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2725e+05 | 394752 | 1 | 4.772e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.68251824800709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09371372925729067, dt = 0.0003555878438360595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 317.45 us (93.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560864106063707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8379e+05 | 394752 | 1 | 5.036e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5417135052693927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09406931710112673, dt = 0.00035560864106063707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 294.83 us (93.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556323460924841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4600e+05 | 394752 | 1 | 4.666e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.743592278940837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09442492574218737, dt = 0.0002809566107538075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.9%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 329.90 us (93.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556530654549008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4079e+05 | 394752 | 1 | 4.695e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1542935081819747 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 172.500335619 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.09470588235294118, dt = 0.0003556530654549008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.02 us (3.5%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 318.73 us (92.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035565476112023607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4617e+05 | 394752 | 1 | 4.665e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.744488617819852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09506153541839608, dt = 0.00035565476112023607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 311.03 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563145263100947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4596e+05 | 394752 | 1 | 4.666e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7438180849964757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09541719017951632, dt = 0.00035563145263100947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 282.12 us (92.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000355613617392636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4222e+05 | 394752 | 1 | 4.687e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7315089840034172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09577282163214733, dt = 0.000355613617392636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 282.35 us (92.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560025109866765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4523e+05 | 394752 | 1 | 4.670e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.741133563565424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09612843524953997, dt = 0.00035560025109866765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 278.34 us (92.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1024 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555903755907357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.0279e+05 | 452096 | 1 | 5.008e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5563540498879114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09648403550063864, dt = 0.0002806703817143097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 285.04 us (93.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00035558507861269313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5830e+05 | 452096 | 1 | 5.267e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.918254255775108 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 176.88866033800002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 122
amr::Godunov: t = 0.09676470588235295, dt = 0.00035558507861269313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.29 us (3.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 309.43 us (91.8%)
LB move op cnt : 0
LB apply : 4.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (74.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00035558113862283115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4954e+05 | 452096 | 1 | 6.032e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1223299244432625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09712029096096564, dt = 0.00035558113862283115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 311.96 us (93.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00035558031511223213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3670e+05 | 452096 | 1 | 5.403e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3690827142568702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09747587209958847, dt = 0.00035558031511223213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 329.09 us (93.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555824269780475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0715e+05 | 452096 | 1 | 5.601e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2853955943983864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0978314524147007, dt = 0.0003555824269780475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.2%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 266.70 us (92.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555872945755864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5426e+05 | 452096 | 1 | 5.292e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.418819849403962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09818703484167875, dt = 0.0003555872945755864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 277.04 us (92.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13248
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555947619117575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6582e+05 | 452096 | 1 | 5.222e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.45158271998219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09854262213625434, dt = 0.0002809072755103753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 271.59 us (92.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 17344
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1360
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.0003637916490339403 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.426e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8638618573113042 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 181.831561628 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.09882352941176471, dt = 0.0003637916490339403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.20 us (3.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.10 us (91.8%)
LB move op cnt : 0
LB apply : 4.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (69.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 336
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Will refine 1024 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 54720 [AMR Grid][rank=0]
Info: cfl dt = 0.0003628947832544698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4041e+05 | 437760 | 1 | 5.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.51425232411348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09918732106079865, dt = 0.0003628947832544698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 307.33 us (93.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003621018056591912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5096e+05 | 437760 | 1 | 5.144e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5395365679503588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09955021584405312, dt = 0.0003621018056591912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 284.27 us (92.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00036139822758895216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5287e+05 | 437760 | 1 | 5.133e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5397002164805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09991231764971231, dt = 0.00036139822758895216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 275.67 us (92.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003607725292909987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3975e+05 | 437760 | 1 | 5.213e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4957543286512096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10027371587730126, dt = 0.0003607725292909987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 320.06 us (93.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00036021488248888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0453e+05 | 437760 | 1 | 5.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3869341130982873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10063448840659225, dt = 0.00024786453458422453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 277.07 us (92.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035986951528845944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5714e+05 | 437760 | 1 | 5.107e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7471676665202016 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 186.627798748 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.10088235294117648, dt = 0.00035986951528845944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.50 us (3.2%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 368.30 us (93.1%)
LB move op cnt : 0
LB apply : 4.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594079030248992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5067e+05 | 437760 | 1 | 5.146e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.517524329324161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10124222245646494, dt = 0.0003594079030248992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 299.06 us (93.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589943722741487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6021e+05 | 437760 | 1 | 5.089e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.54249505324321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10160163035948984, dt = 0.0003589943722741487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 326.99 us (93.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035862328786154436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1751e+05 | 437760 | 1 | 5.355e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.413507834852057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10196062473176398, dt = 0.00035862328786154436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 321.96 us (93.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035828976659261764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5348e+05 | 437760 | 1 | 5.129e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5170950402530265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10231924801962552, dt = 0.00035828976659261764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 333.30 us (93.6%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579922616385026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3215e+05 | 437760 | 1 | 5.261e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.45189216028454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10267753778621815, dt = 0.00026363868437009885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 326.99 us (93.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577954310455021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4499e+05 | 437760 | 1 | 5.181e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8320101019643178 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 191.40383975 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.10294117647058824, dt = 0.0003577954310455021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.89 us (3.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 330.55 us (92.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575508378172694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6065e+05 | 437760 | 1 | 5.086e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5323866774906842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10329897190163374, dt = 0.0003575508378172694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 313.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733224211361515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4822e+05 | 437760 | 1 | 5.161e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.494084780292171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10365652273945102, dt = 0.00035733224211361515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.7%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 349.86 us (94.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035713680082613623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4783e+05 | 437760 | 1 | 5.163e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.491410536929767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10401385498156462, dt = 0.00035713680082613623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 320.88 us (93.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569620221761495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5883e+05 | 437760 | 1 | 5.097e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.522367144371419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10437099178239076, dt = 0.0003569620221761495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 325.15 us (93.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680571823497667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2407e+05 | 437760 | 1 | 5.312e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.419104265603458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10472795380456691, dt = 0.00027204619543309827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.34 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 379.67 us (94.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566985649325393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4463e+05 | 437760 | 1 | 5.183e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8896287586972509 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 196.13449277100003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.10500000000000001, dt = 0.0003566985649325393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.40 us (3.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.00 us (92.2%)
LB move op cnt : 0
LB apply : 4.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565702453563803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2700e+05 | 437760 | 1 | 5.293e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4258908242139894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10535669856493254, dt = 0.0003565702453563803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 315.24 us (93.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564556725998268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5531e+05 | 437760 | 1 | 5.118e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.508048515607633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10571326881028892, dt = 0.0003564556725998268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.9%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 333.40 us (93.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035635349312099354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6175e+05 | 437760 | 1 | 5.080e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.526108535683719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10606972448288875, dt = 0.00035635349312099354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.0%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 313.43 us (93.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (74.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562625085124982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6254e+05 | 437760 | 1 | 5.075e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.527713377214652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10642607797600974, dt = 0.0003562625085124982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.0%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 318.02 us (93.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561816565705871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5940e+05 | 437760 | 1 | 5.094e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.51786186657876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10678234048452223, dt = 0.00027648304488954445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.44 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 276.35 us (92.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035612570295900556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6106e+05 | 437760 | 1 | 5.752e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7304314352378702 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 200.90855322500002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.10705882352941178, dt = 0.00035612570295900556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.52 us (3.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 319.12 us (92.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8384
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035606055796540126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6440e+05 | 437760 | 1 | 5.064e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5315321660237933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10741494923237078, dt = 0.00035606055796540126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.9%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 335.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (73.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035600318461869053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8740e+05 | 437760 | 1 | 5.560e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3056179714835086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10777100979033619, dt = 0.00035600318461869053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 303.76 us (93.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559525286210449 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5513e+05 | 437760 | 1 | 5.119e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5035368238487257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10812701297495488, dt = 0.0003559525286210449
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 315.79 us (93.3%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035590748679209224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4810e+05 | 437760 | 1 | 5.162e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4826071215378893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10848296550357592, dt = 0.00035590748679209224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 324.94 us (93.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035586759896781984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5819e+05 | 437760 | 1 | 5.101e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511813473341984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10883887299036801, dt = 0.00027877406845552843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 338.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035583986248361783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5723e+05 | 437760 | 1 | 5.107e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.965234697066207 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 205.66703293 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.10911764705882354, dt = 0.00035583986248361783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.96 us (3.2%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 381.05 us (93.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035580816443789434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6496e+05 | 437760 | 1 | 5.061e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.531144744612575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10947348692130716, dt = 0.00035580816443789434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 324.18 us (93.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557805894298021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4878e+05 | 437760 | 1 | 5.158e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4835644304723035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10982929508574506, dt = 0.0003557805894298021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 299.12 us (93.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035575684022889334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1694e+05 | 437760 | 1 | 5.359e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.390223774529494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11018507567517485, dt = 0.00035575684022889334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 305.40 us (93.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573665170833123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5132e+05 | 437760 | 1 | 5.142e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4906402913702883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11054083251540375, dt = 0.00035573665170833123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 356.78 us (94.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571978729949307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0606e+05 | 437760 | 1 | 5.431e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3581155414131834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11089656916711209, dt = 0.0002799014211232187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 307.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557088081354118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4612e+05 | 437760 | 1 | 5.174e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9476187312878672 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 210.431933715 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.11117647058823531, dt = 0.0003557088081354118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.41 us (4.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 343.13 us (91.1%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556973662682316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5309e+05 | 437760 | 1 | 5.131e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4954987187217625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11153217939637072, dt = 0.0003556973662682316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 306.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556887151731057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5127e+05 | 437760 | 1 | 5.142e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4900962336905406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188787676263895, dt = 0.0003556887151731057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 372.18 us (94.2%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (72.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035568270114255516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4503e+05 | 437760 | 1 | 5.180e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.471758788158394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224356547781206, dt = 0.00035568270114255516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 328.47 us (93.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12480
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556791870705364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5606e+05 | 437760 | 1 | 5.114e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5039968700143818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11259924817895461, dt = 0.0003556791870705364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 318.48 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.03 us (70.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567805073005607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5615e+05 | 437760 | 1 | 5.113e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5042402262067043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11295492736602515, dt = 0.0002803667516219216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (2.2%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 324.87 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567886587968697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4868e+05 | 437760 | 1 | 5.158e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9567581394318203 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 215.175392874 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.11323529411764707, dt = 0.00035567886587968697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.62 us (3.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 329.46 us (92.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556818814434784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4926e+05 | 437760 | 1 | 5.155e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4840854661359253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11359097298352676, dt = 0.0003556818814434784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.9%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 334.05 us (93.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556870707845435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5870e+05 | 437760 | 1 | 5.098e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511713424322561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11394665486497024, dt = 0.0003556870707845435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 302.41 us (93.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556943061215558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8730e+05 | 437760 | 1 | 5.560e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3028949477368093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11430234193575478, dt = 0.0003556943061215558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.9%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 326.35 us (93.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557034806055876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5481e+05 | 437760 | 1 | 5.121e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5004206332783547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11465803624187634, dt = 0.0003557034806055876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 265.99 us (92.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571450535353227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6818e+05 | 437760 | 1 | 5.699e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2470796974298417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11501373972248193, dt = 0.0002803779245768995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.06 us (2.2%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 342.99 us (93.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (73.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557247364057975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4861e+05 | 437760 | 1 | 5.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9566777370161441 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 220.054007291 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.11529411764705882, dt = 0.0003557247364057975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 31.11 us (8.2%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 333.67 us (87.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557395652914963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7064e+05 | 437760 | 1 | 5.680e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.254395524950659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11564984238346462, dt = 0.0003557395652914963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 265.21 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15552
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1104
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Info: process block count = 54720 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 47552 [AMR Grid][rank=0]
Info: cfl dt = 0.0003557564418258392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3492e+05 | 380416 | 1 | 5.176e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4741020405159344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11600558194875613, dt = 0.0003557564418258392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 295.14 us (93.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7360
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 80
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557752626640556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5215e+05 | 380416 | 1 | 4.464e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.868874881476857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11636133839058196, dt = 0.0003557752626640556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 328.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.2%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11456
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1040
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1280 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.0003639804012666539 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6983e+05 | 394752 | 1 | 5.128e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4977479021847633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11671711365324602, dt = 0.0003639804012666539
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.1%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 283.25 us (92.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003631274923952655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5153e+05 | 394752 | 1 | 4.636e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8265622895150746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11708109405451268, dt = 0.0002718471219579077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.0%)
patch tree reduce : 2.53 us (0.7%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 323.43 us (93.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003625584879296224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4725e+05 | 394752 | 1 | 4.659e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100452591411011 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 224.71809414900002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.11735294117647059, dt = 0.0003625584879296224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.97 us (3.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 334.32 us (92.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00036186769108106535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6530e+05 | 394752 | 1 | 5.158e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5303835088110453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11771549966440022, dt = 0.00036186769108106535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 278.21 us (92.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00036125364086237447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4897e+05 | 394752 | 1 | 4.650e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.801701657073564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11807736735548129, dt = 0.00036125364086237447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 296.23 us (93.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (72.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003607065839396279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6033e+05 | 394752 | 1 | 5.192e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5049003139742885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11843862099634365, dt = 0.0003607065839396279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.0%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 305.14 us (93.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00036021816366295893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0205e+05 | 394752 | 1 | 4.922e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6383673848971783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11879932758028328, dt = 0.00036021816366295893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 315.30 us (93.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (73.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035978119268226315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4372e+05 | 394752 | 1 | 4.679e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7716583117190003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11915954574394623, dt = 0.0002522189619361265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.0%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 324.97 us (93.3%)
LB move op cnt : 0
LB apply : 4.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (72.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035950459877862664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4349e+05 | 394752 | 1 | 4.680e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.940160445415603 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 229.20827217800002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.11941176470588236, dt = 0.00035950459877862664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.18 us (3.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 337.32 us (92.5%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591411183376725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3988e+05 | 394752 | 1 | 4.700e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7535969221006815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11977126930466098, dt = 0.0003591411183376725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 279.30 us (92.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588142856943994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6489e+05 | 394752 | 1 | 5.161e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5051967561366375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12013041042299864, dt = 0.0003588142856943994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 284.00 us (92.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035851989711944634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6090e+05 | 394752 | 1 | 5.188e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.489865597271615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12048922470869304, dt = 0.00035851989711944634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.56 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 323.22 us (93.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035825428909557145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2673e+05 | 394752 | 1 | 4.775e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7030647122282825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12084774460581249, dt = 0.00035825428909557145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.2%)
patch tree reduce : 2.43 us (0.4%)
gen split merge : 1.20 us (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.2%)
LB compute : 542.43 us (95.8%)
LB move op cnt : 0
LB apply : 4.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000358014262907252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3776e+05 | 394752 | 1 | 4.712e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7371046234904632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12120599889490806, dt = 0.0002645893403860622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 323.97 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578527520926793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1334e+05 | 394752 | 1 | 4.853e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9625501221136357 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 233.722831165 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.12147058823529412, dt = 0.0003578527520926793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.10 us (3.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 324.35 us (92.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576506423243887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4753e+05 | 394752 | 1 | 4.658e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.765910576697808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12182844098738681, dt = 0.0003576506423243887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 300.03 us (93.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574672625553346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6896e+05 | 394752 | 1 | 5.134e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.508088094015347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1221860916297112, dt = 0.0003574672625553346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 277.45 us (92.4%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730065348220743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4326e+05 | 394752 | 1 | 4.681e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7490108511989715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12254355889226654, dt = 0.00035730065348220743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 288.83 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035714908921255224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2784e+05 | 394752 | 1 | 4.768e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6974708952642583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12290085954574874, dt = 0.00035714908921255224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 339.29 us (93.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035701168344550165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1800e+05 | 394752 | 1 | 4.826e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6642952839880234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1232580086349613, dt = 0.00027140312974459346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 313.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035691667033330333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8459e+05 | 394752 | 1 | 5.031e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9419429727914483 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 238.19215873500002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.12352941176470589, dt = 0.00035691667033330333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.93 us (3.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 319.03 us (91.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680135142477417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3883e+05 | 394752 | 1 | 4.706e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7303675292038174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12388632843503919, dt = 0.00035680135142477417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 278.32 us (92.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (67.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566969013663578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4896e+05 | 394752 | 1 | 4.650e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.762445055980037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12424312978646396, dt = 0.0003566969013663578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 263.83 us (92.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566022507533735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4198e+05 | 394752 | 1 | 4.688e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7389333748005287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12459982668783032, dt = 0.0003566022507533735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 410.42 us (94.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651645109814503 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.379e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3867570318134814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12495642893858369, dt = 0.00035651645109814503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.2%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 289.91 us (93.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6080
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035643866020681445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8823e+05 | 394752 | 1 | 5.008e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.562782327378406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12531294538968182, dt = 0.00027528990443584367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 283.45 us (93.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035638390467720256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4478e+05 | 394752 | 1 | 4.673e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1208711156831206 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 242.677371905 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.12558823529411767, dt = 0.00035638390467720256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.87 us (3.2%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 369.88 us (92.8%)
LB move op cnt : 0
LB apply : 5.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (75.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035631849414837445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4137e+05 | 394752 | 1 | 5.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4095183021549307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12594461919879488, dt = 0.00035631849414837445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 347.02 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562592160501886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4487e+05 | 394752 | 1 | 4.672e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.745393424475419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12630093769294326, dt = 0.0003562592160501886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.9%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 332.89 us (93.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000356205526986263 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3989e+05 | 394752 | 1 | 4.700e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7287540277403233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12665719690899344, dt = 0.000356205526986263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 303.43 us (93.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561569420644775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2815e+05 | 394752 | 1 | 4.767e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.690232114641305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1270134024359797, dt = 0.0003561569420644775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.8%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 331.14 us (93.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035611302817764237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5018e+05 | 394752 | 1 | 4.643e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7614041631062216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12736955937804417, dt = 0.0002774994454852464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 314.92 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035608197887622276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3703e+05 | 394752 | 1 | 4.716e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.11827162274902 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 247.382709476 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.12764705882352942, dt = 0.00035608197887622276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.24 us (3.0%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 383.11 us (93.3%)
LB move op cnt : 0
LB apply : 4.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560450825353154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2940e+05 | 394752 | 1 | 5.412e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.368603150869842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12800314080240563, dt = 0.0003560450825353154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 1.40 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 379.61 us (94.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000356011443926543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3134e+05 | 394752 | 1 | 4.748e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6993626901679044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12835918588494094, dt = 0.000356011443926543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 306.79 us (93.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035598083150202375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5214e+05 | 394752 | 1 | 4.632e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7666467880811707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1287151973288675, dt = 0.00035598083150202375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 304.80 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559530346406573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3288e+05 | 394752 | 1 | 4.740e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.703894356837167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1290711781603695, dt = 0.0003559530346406573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.9%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.60 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559278618135641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9723e+05 | 394752 | 1 | 4.952e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.58792868190135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12942713119501015, dt = 0.0002787511579310509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 267.68 us (92.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559099437175206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4209e+05 | 394752 | 1 | 4.688e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.14067915976152 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 251.87133830000002 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.1297058823529412, dt = 0.0003559099437175206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.81 us (3.2%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 370.78 us (93.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 784
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558890239308255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8043e+05 | 394752 | 1 | 5.058e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.533108915209421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1300617922966587, dt = 0.0003558890239308255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.1%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 321.46 us (93.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 784
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035587028203725173 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.397141935363711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13041768132058953, dt = 0.00035587028203725173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.0%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 296.10 us (93.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558535848255871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7989e+05 | 394752 | 1 | 5.062e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.53106906054487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1307735516026268, dt = 0.0003558535848255871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.5%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 272.57 us (91.7%)
LB move op cnt : 0
LB apply : 4.96 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558388113652909 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7961e+05 | 394752 | 1 | 5.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.530044250033518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1311294051874524, dt = 0.0003558388113652909
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.54 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 296.29 us (92.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035582596745761607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0668e+05 | 394752 | 1 | 4.894e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6177915644819945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13148524399881767, dt = 0.00027946188353528134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 284.20 us (92.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558172308955978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1348e+05 | 394752 | 1 | 4.853e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.073239102199015 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 256.48918392 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.13176470588235295, dt = 0.0003558172308955978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.79 us (3.8%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 389.85 us (92.6%)
LB move op cnt : 0
LB apply : 4.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035580755897201275 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.242458002373864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13212052311324854, dt = 0.00035580755897201275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.1%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.60 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 315.04 us (93.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557994716689128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2293e+05 | 394752 | 1 | 4.797e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.670271429340709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13247633067222056, dt = 0.0003557994716689128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (1.8%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 1.34 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 385.39 us (94.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035579285299940864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9581e+05 | 394752 | 1 | 4.960e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5822219368298125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13283213014388948, dt = 0.00035579285299940864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.62 us (3.1%)
patch tree reduce : 4.92 us (1.1%)
gen split merge : 2.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.75 us (0.4%)
LB compute : 425.90 us (91.7%)
LB move op cnt : 0
LB apply : 5.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (77.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035578799637902967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5575e+05 | 394752 | 1 | 5.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4521966092640297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1331879229968889, dt = 0.00035578799637902967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (1.7%)
patch tree reduce : 2.32 us (0.5%)
gen split merge : 1.52 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 426.14 us (91.0%)
LB move op cnt : 0
LB apply : 12.48 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (82.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557848563409373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5120e+05 | 394752 | 1 | 5.255e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.437393497264132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13354371099326792, dt = 0.00027981841849678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (1.9%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.38 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 373.28 us (93.5%)
LB move op cnt : 0
LB apply : 5.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035578356730216155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6334e+05 | 394752 | 1 | 5.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9479225800633402 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 261.427595532 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.1338235294117647, dt = 0.00035578356730216155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.45 us (2.3%)
patch tree reduce : 1.94 us (0.3%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.17 us (0.2%)
LB compute : 579.43 us (93.9%)
LB move op cnt : 0
LB apply : 9.90 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (81.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035578315560647983 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3618079212811565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13417931297906685, dt = 0.00035578315560647983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.28 us (1.8%)
patch tree reduce : 3.75 us (0.8%)
gen split merge : 2.40 us (0.5%)
split / merge op : 0/0
apply split merge : 2.33 us (0.5%)
LB compute : 420.56 us (93.2%)
LB move op cnt : 0
LB apply : 4.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (81.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1552
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1024 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.00036418613880883835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0438e+05 | 394752 | 1 | 5.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2854333983479953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13453509613467332, dt = 0.00036418613880883835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 353.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10176
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 528
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Info: process block count = 49344 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 47552 [AMR Grid][rank=0]
Info: cfl dt = 0.0003633511408491173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3329e+05 | 380416 | 1 | 5.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.527230799850046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13489928227348216, dt = 0.0003633511408491173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.43 us (2.3%)
patch tree reduce : 2.94 us (0.7%)
gen split merge : 2.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 381.27 us (91.5%)
LB move op cnt : 0
LB apply : 10.83 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (77.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9408
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003626117785077405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8597e+05 | 380416 | 1 | 4.840e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7025706665782288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13526263341433128, dt = 0.0003626117785077405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.13 us (2.1%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.99 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 352.41 us (93.1%)
LB move op cnt : 0
LB apply : 4.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (73.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9408
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036195507967492596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9406e+05 | 380416 | 1 | 4.791e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7248242191095664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13562524519283903, dt = 0.000257107748337454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.1%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.62 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 337.34 us (93.4%)
LB move op cnt : 0
LB apply : 4.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (72.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9408
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036153668191364467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0642e+05 | 380416 | 1 | 4.717e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.962095657274222 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 266.43665400500004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
amr::Godunov: t = 0.13588235294117648, dt = 0.00036153668191364467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.20 us (3.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 358.28 us (92.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9408
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036099713966648026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2286e+05 | 380416 | 1 | 4.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.815278246886633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13624388962309011, dt = 0.00036099713966648026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (1.9%)
patch tree reduce : 2.72 us (0.7%)
gen split merge : 1.50 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 378.38 us (93.9%)
LB move op cnt : 0
LB apply : 4.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (79.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9408
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605149612114025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0309e+05 | 380416 | 1 | 4.737e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.743527266914267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366048867627566, dt = 0.0003605149612114025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.1%)
patch tree reduce : 2.68 us (0.8%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 309.55 us (92.3%)
LB move op cnt : 0
LB apply : 5.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (76.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003600831399350336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3518e+05 | 380416 | 1 | 5.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5082029944266826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13696540172396798, dt = 0.0003600831399350336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 290.82 us (92.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035969563303274194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1688e+05 | 380416 | 1 | 4.657e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7835722034519037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13732548486390303, dt = 0.00035969563303274194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 321.00 us (93.5%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035934721378380163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2485e+05 | 380416 | 1 | 4.612e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.807711376511136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13768518049693576, dt = 0.00025599597365247306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.0%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 359.56 us (93.5%)
LB move op cnt : 0
LB apply : 4.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (81.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591220986241501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8364e+05 | 380416 | 1 | 4.854e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8984304908538303 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 271.01582092300004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
amr::Godunov: t = 0.13794117647058823, dt = 0.0003591220986241501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.20 us (3.2%)
patch tree reduce : 3.55 us (0.8%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.3%)
LB compute : 431.65 us (91.5%)
LB move op cnt : 0
LB apply : 8.64 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (78.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588302171693231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6415e+05 | 380416 | 1 | 5.728e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2571095628844584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383002985692124, dt = 0.0003588302171693231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.0%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 364.09 us (93.6%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003585664802766162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6977e+05 | 380416 | 1 | 5.680e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.274352315218706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386591287863817, dt = 0.0003585664802766162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.42 us (2.1%)
patch tree reduce : 4.18 us (1.0%)
gen split merge : 1.63 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 376.27 us (93.0%)
LB move op cnt : 0
LB apply : 4.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035832777920952744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8501e+05 | 380416 | 1 | 5.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.32440318822163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13901769526665833, dt = 0.00035832777920952744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (1.8%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 1.40 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 392.25 us (93.8%)
LB move op cnt : 0
LB apply : 5.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (74.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035811140189501666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4769e+05 | 380416 | 1 | 5.873e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1963057132064847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13937602304586785, dt = 0.00035811140189501666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 323.41 us (93.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035791496861438247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4549e+05 | 380416 | 1 | 5.893e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187519635097282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13973413444776286, dt = 0.0002658655522371489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.07 us (2.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 332.66 us (91.8%)
LB move op cnt : 0
LB apply : 5.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577815488024805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8702e+05 | 380416 | 1 | 5.537e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7285208849119433 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 276.238598926 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
amr::Godunov: t = 0.14, dt = 0.0003577815488024805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.59 us (3.0%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 421.97 us (93.3%)
LB move op cnt : 0
LB apply : 5.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (79.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576149372312401 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9759e+05 | 380416 | 1 | 5.453e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.361908501507309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403577815488025, dt = 0.0003576149372312401
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 2.46 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 317.85 us (93.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574631148591167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7704e+05 | 380416 | 1 | 4.896e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.629664434902872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14071539648603373, dt = 0.0003574631148591167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (2.5%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.48 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 295.84 us (92.0%)
LB move op cnt : 0
LB apply : 5.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573245959389875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0471e+05 | 380416 | 1 | 4.727e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7221515981999085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14107285960089286, dt = 0.0003573245959389875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.0%)
patch tree reduce : 2.48 us (0.7%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 329.97 us (93.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (73.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035719806570746977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7827e+05 | 380416 | 1 | 4.888e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6317083751880057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14143018419683184, dt = 0.00035719806570746977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.45 us (2.6%)
patch tree reduce : 2.48 us (0.8%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 296.56 us (92.1%)
LB move op cnt : 0
LB apply : 4.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (70.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708235894677204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0218e+05 | 380416 | 1 | 4.742e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.711595467549897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1417873822625393, dt = 0.00027144126687245196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.1%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 311.94 us (92.9%)
LB move op cnt : 0
LB apply : 5.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700142063695346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1164e+05 | 380416 | 1 | 4.687e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0848878216748434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 280.95594847200005 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
amr::Godunov: t = 0.14205882352941177, dt = 0.00035700142063695346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.02 us (3.2%)
patch tree reduce : 2.14 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.3%)
LB compute : 444.17 us (93.2%)
LB move op cnt : 0
LB apply : 5.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (80.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035690228720813166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7330e+05 | 380416 | 1 | 4.919e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6125464966540006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14241582495004873, dt = 0.00035690228720813166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 351.65 us (93.8%)
LB move op cnt : 0
LB apply : 4.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568119511122373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6867e+05 | 380416 | 1 | 4.949e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.596168177294596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14277272723725687, dt = 0.0003568119511122373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 306.83 us (93.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (78.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5056
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567297387049004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0770e+05 | 380416 | 1 | 5.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3896486391599634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1431295391883691, dt = 0.0003567297387049004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.8%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 353.52 us (93.6%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (80.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035665489679461614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8864e+05 | 380416 | 1 | 4.824e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6623373617104904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.143486268927074, dt = 0.00035665489679461614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.9%)
patch tree reduce : 2.52 us (0.7%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 358.08 us (93.8%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1280 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565867528382345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.2353e+05 | 452096 | 1 | 4.895e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6228232003342233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14384292382386862, dt = 0.0002747232349549211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 295.35 us (93.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Will refine 1024 blocks
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565387061032111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.0366e+05 | 509440 | 1 | 5.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7543222631034847 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 285.72445940800003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.14411764705882354, dt = 0.0003565387061032111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.76 us (3.4%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 379.31 us (92.6%)
LB move op cnt : 0
LB apply : 5.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (75.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035648096426247483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9575e+05 | 509440 | 1 | 6.402e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0048893151040357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14447418576492677, dt = 0.00035648096426247483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.0%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 338.59 us (93.3%)
LB move op cnt : 0
LB apply : 4.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (74.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564284115954976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1090e+05 | 509440 | 1 | 6.282e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.042741146837477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14483066672918923, dt = 0.0003564284115954976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.20 us (1.9%)
patch tree reduce : 2.46 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 414.71 us (93.6%)
LB move op cnt : 0
LB apply : 6.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (83.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563806145304318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3550e+05 | 509440 | 1 | 6.926e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.85252610369758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14518709514078473, dt = 0.0003563806145304318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.9%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 350.56 us (93.3%)
LB move op cnt : 0
LB apply : 4.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (75.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035633718111825443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8705e+05 | 509440 | 1 | 6.473e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.982089669577756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14554347575531518, dt = 0.00035633718111825443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.0%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 340.28 us (93.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.000356297756742719 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2761e+05 | 509440 | 1 | 6.156e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084002186394444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14589981293643342, dt = 0.00027665765180187596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 319.01 us (92.8%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562698619033224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3400e+05 | 509440 | 1 | 6.108e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6304890793293758 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 291.624460825 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.1461764705882353, dt = 0.0003562698619033224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.77 us (3.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 338.13 us (91.8%)
LB move op cnt : 0
LB apply : 5.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (79.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035623677663424043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3270e+05 | 509440 | 1 | 6.118e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.096402963251109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14653274045013862, dt = 0.00035623677663424043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.2%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 327.82 us (93.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562066144120067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3596e+05 | 509440 | 1 | 6.094e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104429925730977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14688897722677285, dt = 0.0003562066144120067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.0%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 331.49 us (93.1%)
LB move op cnt : 0
LB apply : 4.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (72.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035617904111155403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1146e+05 | 509440 | 1 | 6.278e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0425727445054185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14724518384118487, dt = 0.00035617904111155403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.0%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 289.51 us (92.8%)
LB move op cnt : 0
LB apply : 4.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (69.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035615386684886504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2714e+05 | 509440 | 1 | 6.159e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.081877291770985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14760136288229642, dt = 0.00035615386684886504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 2.42 us (0.8%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 272.64 us (87.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (72.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035613091908827437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4272e+05 | 509440 | 1 | 6.045e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.120938967264989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14795751674914528, dt = 0.00027777736850179147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.9%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 343.29 us (93.6%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9152
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035611453214752763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9509e+05 | 509440 | 1 | 6.407e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5607044216175312 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 297.391943076 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.14823529411764708, dt = 0.00035611453214752763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.66 us (3.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 339.08 us (92.4%)
LB move op cnt : 0
LB apply : 4.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035609516408576837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0941e+05 | 509440 | 1 | 6.294e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0368870565145447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14859140864979462, dt = 0.00035609516408576837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 320.99 us (93.4%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (73.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560776209324613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2576e+05 | 509440 | 1 | 6.169e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.077911976178175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1489475038138804, dt = 0.0003560776209324613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 313.21 us (93.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035606178223346894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4136e+05 | 509440 | 1 | 6.055e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.117062890076909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14930358143481284, dt = 0.00035606178223346894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.8%)
patch tree reduce : 2.41 us (0.6%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 354.14 us (93.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560475383920722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0588e+05 | 509440 | 1 | 6.322e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.027709656525782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496596432170463, dt = 0.0003560475383920722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.0%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 344.60 us (93.5%)
LB move op cnt : 0
LB apply : 4.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035603478968554994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0863e+05 | 509440 | 1 | 6.300e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0345566517603118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15001569075543839, dt = 0.00027842689162044243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.9%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 344.21 us (93.6%)
LB move op cnt : 0
LB apply : 4.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035602586547276967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0833e+05 | 509440 | 1 | 6.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5904167179303366 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 303.210278291 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.15029411764705883, dt = 0.00035602586547276967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.91 us (3.0%)
patch tree reduce : 2.02 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 425.51 us (93.2%)
LB move op cnt : 0
LB apply : 5.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (78.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560156781520274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1101e+05 | 509440 | 1 | 6.282e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.040420060864401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1506501435125316, dt = 0.0003560156781520274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 301.63 us (93.1%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035600703598197086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3112e+05 | 509440 | 1 | 6.130e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090940405999053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1510061591906836, dt = 0.00035600703598197086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.1%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 296.66 us (92.6%)
LB move op cnt : 0
LB apply : 4.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560000555751635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2197e+05 | 509440 | 1 | 6.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0678706383945937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15136216622666557, dt = 0.0003560000555751635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 300.79 us (92.9%)
LB move op cnt : 0
LB apply : 4.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559945788154338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2001e+05 | 509440 | 1 | 6.213e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062902846075819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15171816628224072, dt = 0.0003559945788154338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 348.20 us (93.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8128
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 272
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559905401847502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9867e+05 | 509440 | 1 | 6.379e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0091862972517207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15207416086105616, dt = 0.0002787803154144508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 313.52 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.1%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12224
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1296
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1344 blocks
Info: process block count = 73088 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 65920 [AMR Grid][rank=0]
Info: cfl dt = 0.00036428714946480395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3836e+05 | 527360 | 1 | 6.290e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5954716404087763 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 309.30380749600005 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.1523529411764706, dt = 0.00036428714946480395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.91 us (3.2%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 369.55 us (92.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (70.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036346265761826615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7469e+05 | 527360 | 1 | 6.807e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9265008223155693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1527172283259354, dt = 0.00036346265761826615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 299.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (64.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036273282595141766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3126e+05 | 527360 | 1 | 6.344e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0624944564384498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15308069098355367, dt = 0.00036273282595141766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.2%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 301.35 us (92.9%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (57.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036208518816845196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5051e+05 | 527360 | 1 | 7.027e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8584034109046832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1534434238095051, dt = 0.00036208518816845196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.7%)
patch tree reduce : 2.45 us (0.7%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 345.19 us (93.8%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036150913037113705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9203e+05 | 527360 | 1 | 6.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.957706571800953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15380550899767356, dt = 0.00036150913037113705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.2%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 320.47 us (92.7%)
LB move op cnt : 0
LB apply : 5.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (79.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036099557895347503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9961e+05 | 527360 | 1 | 6.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9733065901236522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1541670181280447, dt = 0.00024474657783765674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.7%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 382.14 us (94.2%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036068201109231123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7878e+05 | 527360 | 1 | 6.772e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3011556880149677 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 315.39442981900004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.15441176470588236, dt = 0.00036068201109231123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.05 us (2.9%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 415.85 us (93.5%)
LB move op cnt : 0
LB apply : 4.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602560465567715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2323e+05 | 527360 | 1 | 6.406e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0269345505534497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15477244671697468, dt = 0.0003602560465567715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.2%)
patch tree reduce : 2.59 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 321.62 us (92.7%)
LB move op cnt : 0
LB apply : 4.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598741333728624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9544e+05 | 527360 | 1 | 6.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9562093448432536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15513270276353144, dt = 0.0003598741333728624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.6%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 1.33 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 387.61 us (94.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595310208949884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2863e+05 | 527360 | 1 | 6.364e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0356713617851554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1554925768969043, dt = 0.0003595310208949884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 288.99 us (93.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (68.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592221733971462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2682e+05 | 527360 | 1 | 6.378e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0292799537511437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15585210791779927, dt = 0.0003592221733971462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 337.35 us (93.7%)
LB move op cnt : 0
LB apply : 4.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035894364689100015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8224e+05 | 527360 | 1 | 6.742e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9182180501701669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15621133009119642, dt = 0.0002592581440977182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.60 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 302.29 us (92.8%)
LB move op cnt : 0
LB apply : 4.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035876072661308954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2944e+05 | 527360 | 1 | 6.358e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4679571253592503 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 321.463375315 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.15647058823529414, dt = 0.00035876072661308954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.08 us (3.3%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 370.97 us (92.9%)
LB move op cnt : 0
LB apply : 4.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (69.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035852646467779875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8771e+05 | 527360 | 1 | 6.695e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9291588634393682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15682934896190723, dt = 0.00035852646467779875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 331.37 us (93.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (73.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035831417684539 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2695e+05 | 527360 | 1 | 6.377e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.023924424908166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15718787542658502, dt = 0.00035831417684539
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.0%)
patch tree reduce : 1.92 us (0.3%)
gen split merge : 1.27 us (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 622.29 us (96.5%)
LB move op cnt : 0
LB apply : 4.89 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (76.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035812147863023975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2029e+05 | 527360 | 1 | 6.429e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006438390060633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15754618960343042, dt = 0.00035812147863023975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.5%)
patch tree reduce : 2.48 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 274.29 us (92.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (77.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035794628838961264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3113e+05 | 527360 | 1 | 6.345e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.031857642675744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15790431108206066, dt = 0.00035794628838961264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.56 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 334.75 us (93.3%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577867758753307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3240e+05 | 527360 | 1 | 6.335e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.033979740849469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15826225737045027, dt = 0.0002671543942556198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (0.9%)
patch tree reduce : 2.47 us (0.3%)
gen split merge : 1.27 us (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.2%)
LB compute : 700.46 us (96.5%)
LB move op cnt : 0
LB apply : 5.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (77.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576775706574507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4191e+05 | 527360 | 1 | 6.264e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5354064032125065 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 327.461641566 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.1585294117647059, dt = 0.0003576775706574507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.31 us (3.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 337.84 us (92.2%)
LB move op cnt : 0
LB apply : 4.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035754162167389255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2165e+05 | 527360 | 1 | 6.418e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006191364605713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15888708933536333, dt = 0.00035754162167389255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.9%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1.52 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 343.56 us (93.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (72.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574173641709502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8736e+05 | 527360 | 1 | 6.698e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.921752665564915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15924463095703723, dt = 0.0003574173641709502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.3%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 285.86 us (92.3%)
LB move op cnt : 0
LB apply : 4.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730364545298306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3214e+05 | 527360 | 1 | 6.337e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0303435089701813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15960204832120817, dt = 0.00035730364545298306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 291.51 us (93.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (69.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571994428642805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3176e+05 | 527360 | 1 | 6.340e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.028764465663592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15995935196666114, dt = 0.0003571994428642805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 310.36 us (93.0%)
LB move op cnt : 0
LB apply : 4.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571038477432749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1724e+05 | 527360 | 1 | 6.453e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9927740910539837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16031655140952542, dt = 0.00027168388459225534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 339.13 us (93.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703671444962807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2657e+05 | 527360 | 1 | 6.380e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5329958081696946 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 333.49686222900004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.16058823529411767, dt = 0.00035703671444962807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.63 us (3.1%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 407.64 us (93.3%)
LB move op cnt : 0
LB apply : 4.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (73.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035695433512923804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7077e+05 | 527360 | 1 | 6.842e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8785909057941959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16094527200856729, dt = 0.00035695433512923804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.3%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 299.98 us (92.3%)
LB move op cnt : 0
LB apply : 4.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (77.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568785414051585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0395e+05 | 527360 | 1 | 6.560e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9590120101202115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16130222634369654, dt = 0.0003568785414051585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 312.55 us (93.1%)
LB move op cnt : 0
LB apply : 4.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568087425641155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9869e+05 | 527360 | 1 | 6.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9457858700771775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16165910488510168, dt = 0.0003568087425641155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.3%)
patch tree reduce : 2.57 us (0.8%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 291.89 us (92.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567444100907903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8952e+05 | 527360 | 1 | 6.679e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9230717150466081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1620159136276658, dt = 0.0003567444100907903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 317.70 us (93.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035668507045699476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0167e+05 | 527360 | 1 | 6.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9523067331061996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16237265803775658, dt = 0.00027440078577284366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.0%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 329.87 us (93.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (73.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566427893716007 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7477e+05 | 527360 | 1 | 6.807e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.451279884966884 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 339.706744017 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.16264705882352942, dt = 0.0003566427893716007
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.35 us (3.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 319.34 us (92.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565915700899438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3211e+05 | 527360 | 1 | 6.338e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0258714568714065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16300370161290104, dt = 0.0003565915700899438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 316.61 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (76.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035654454602114115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6542e+05 | 527360 | 1 | 6.890e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8632280706464226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16336029318299097, dt = 0.00035654454602114115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.52 us (2.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 344.25 us (92.6%)
LB move op cnt : 0
LB apply : 5.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (81.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035650136295466866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2747e+05 | 527360 | 1 | 6.373e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0140080304696943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1637168377290121, dt = 0.00035650136295466866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.9%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.83 us (93.3%)
LB move op cnt : 0
LB apply : 4.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (73.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.000356461701969119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1739e+05 | 527360 | 1 | 6.452e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9892415930518712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16407333909196678, dt = 0.000356461701969119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 292.33 us (92.6%)
LB move op cnt : 0
LB apply : 4.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035642527556603543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3149e+05 | 527360 | 1 | 6.342e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0233286908957013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1644298007939359, dt = 0.00027608155900529785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.4%)
patch tree reduce : 2.49 us (0.8%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 275.09 us (92.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (66.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035639923871088415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3622e+05 | 527360 | 1 | 6.306e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5759962966577519 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 345.771383457 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.1647058823529412, dt = 0.00035639923871088415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.82 us (3.1%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 419.90 us (93.2%)
LB move op cnt : 0
LB apply : 5.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (81.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563679215357484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1165e+05 | 527360 | 1 | 6.497e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.974696863567058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1650622815916521, dt = 0.0003563679215357484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.2%)
patch tree reduce : 2.54 us (0.4%)
gen split merge : 1.26 us (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.2%)
LB compute : 554.64 us (95.8%)
LB move op cnt : 0
LB apply : 4.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035633917941639386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2255e+05 | 527360 | 1 | 6.411e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0010378362892904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16541864951318785, dt = 0.00035633917941639386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.0%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 319.30 us (93.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 848
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035631281583402643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1912e+05 | 527360 | 1 | 6.438e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9925330472819867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16577498869260424, dt = 0.00035631281583402643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.0%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 330.70 us (93.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (73.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035628846984007864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1633e+05 | 527360 | 1 | 6.460e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9856108498601561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16613130150843827, dt = 0.00035628846984007864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 290.65 us (93.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562659364766432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2506e+05 | 527360 | 1 | 6.392e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0067070652023173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16648758997827834, dt = 0.00027711590407461517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 310.86 us (93.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (77.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035624963623078686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1268e+05 | 527360 | 1 | 6.489e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5373577760515458 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 351.852344151 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.16676470588235295, dt = 0.00035624963623078686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.47 us (3.3%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 380.96 us (92.8%)
LB move op cnt : 0
LB apply : 5.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (74.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035623002083031303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1555e+05 | 527360 | 1 | 6.466e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9833624292473513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16712095551858375, dt = 0.00035623002083031303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.8%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 347.63 us (93.7%)
LB move op cnt : 0
LB apply : 4.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (72.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562118981877675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2542e+05 | 527360 | 1 | 6.389e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007241332385714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16747718553941407, dt = 0.0003562118981877675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.3%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.45 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 296.18 us (92.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (73.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035619517195548074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9546e+05 | 527360 | 1 | 6.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9342857354313707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16783339743760184, dt = 0.00035619517195548074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 293.82 us (92.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035617975420638683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1758e+05 | 527360 | 1 | 6.450e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9879802630903034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16818959260955732, dt = 0.00035617975420638683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 290.43 us (92.6%)
LB move op cnt : 0
LB apply : 4.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (75.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561656603652092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1976e+05 | 527360 | 1 | 6.433e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.993197736165286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1685457723637637, dt = 0.0002777570480010094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 285.93 us (92.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035615559847634946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0208e+05 | 527360 | 1 | 6.575e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5208254934179857 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 357.895183073 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.1688235294117647, dt = 0.00035615559847634946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.90 us (3.2%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 400.32 us (93.1%)
LB move op cnt : 0
LB apply : 5.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (71.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561438587935452 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1930e+05 | 527360 | 1 | 6.437e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9919369821580397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16917968501024105, dt = 0.0003561438587935452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 1.32 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 361.61 us (93.9%)
LB move op cnt : 0
LB apply : 5.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (77.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035613373180790736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9577e+05 | 527360 | 1 | 6.627e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.934670634468354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1695358288690346, dt = 0.00035613373180790736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 316.72 us (93.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (80.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561250655104458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8065e+05 | 527360 | 1 | 6.755e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8978677578607526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1698919626008425, dt = 0.0003561250655104458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.7%)
patch tree reduce : 2.24 us (0.5%)
gen split merge : 1.35 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 368.82 us (90.2%)
LB move op cnt : 0
LB apply : 5.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14464
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1616
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1024 blocks
Info: process block count = 73088 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 65920 [AMR Grid][rank=0]
Info: cfl dt = 0.0003641923115840798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8698e+05 | 527360 | 1 | 6.701e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.91320124274475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17024808766635294, dt = 0.0003641923115840798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 316.05 us (93.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 592
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Info: process block count = 65920 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 64128 [AMR Grid][rank=0]
Info: cfl dt = 0.0003633943854411286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8813e+05 | 513024 | 1 | 6.509e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.014153762601118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17061227997793701, dt = 0.0002700729632394705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 302.28 us (93.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00036286574486220596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7566e+05 | 513024 | 1 | 6.614e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.470006510493638 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 364.074055225 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.17088235294117649, dt = 0.00036286574486220596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.77 us (3.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 323.39 us (91.6%)
LB move op cnt : 0
LB apply : 4.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00036221857531867674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3902e+05 | 513024 | 1 | 6.115e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1364120124534356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1712452186860387, dt = 0.00036221857531867674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.4%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 282.32 us (92.1%)
LB move op cnt : 0
LB apply : 4.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (72.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003616428933638735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2186e+05 | 513024 | 1 | 6.242e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0889871427478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17160743726135738, dt = 0.0003616428933638735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 274.83 us (91.9%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00036112962362841087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7268e+05 | 513024 | 1 | 6.640e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9608525774985333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17196908015472126, dt = 0.00036112962362841087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 303.10 us (92.7%)
LB move op cnt : 0
LB apply : 4.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (72.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606709843487468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7546e+05 | 513024 | 1 | 6.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9650997508506391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17233020977834967, dt = 0.0003606709843487468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 277.52 us (92.3%)
LB move op cnt : 0
LB apply : 4.76 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00036026028066593336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1890e+05 | 513024 | 1 | 6.265e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0725630261648424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17269088076269842, dt = 0.0002502957078898138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.4%)
patch tree reduce : 2.57 us (0.8%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 279.48 us (92.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003600023388972307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4134e+05 | 513024 | 1 | 6.098e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4777033440239007 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 370.06065406600004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.17294117647058824, dt = 0.0003600023388972307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.91 us (3.2%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 371.36 us (92.9%)
LB move op cnt : 0
LB apply : 4.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035965983373961914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1151e+05 | 513024 | 1 | 6.322e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050041160683673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17330117880948548, dt = 0.00035965983373961914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (1.9%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 348.04 us (89.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (77.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593514434688321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7405e+05 | 513024 | 1 | 6.628e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9535646475914767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1736608386432251, dt = 0.0003593514434688321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 2.46 us (0.8%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 292.34 us (92.4%)
LB move op cnt : 0
LB apply : 4.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003590732276151788 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0727e+05 | 513024 | 1 | 6.355e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0356540664542684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17402019008669392, dt = 0.0003590732276151788
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.3%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 293.64 us (92.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035882175835451487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9159e+05 | 513024 | 1 | 6.481e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9945746681178886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743792633143091, dt = 0.00035882175835451487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.1%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 312.54 us (93.0%)
LB move op cnt : 0
LB apply : 4.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (76.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035859406324192537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8191e+05 | 513024 | 1 | 6.561e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9687943018460505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17473808507266364, dt = 0.00026191492733637634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.1%)
patch tree reduce : 2.63 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 305.51 us (92.7%)
LB move op cnt : 0
LB apply : 4.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (75.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5504
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584423019481187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1317e+05 | 513024 | 1 | 6.309e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4945273724814379 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 376.100512998 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.17500000000000002, dt = 0.0003584423019481187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.55 us (3.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 384.14 us (92.9%)
LB move op cnt : 0
LB apply : 4.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 5504
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035824968382077013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2484e+05 | 513024 | 1 | 6.220e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.074704752488096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17535844230194814, dt = 0.00035824968382077013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.9%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 1.61 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 346.45 us (93.4%)
LB move op cnt : 0
LB apply : 4.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (70.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580744932756107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9465e+05 | 513024 | 1 | 6.456e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.997672161945566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17571669198576892, dt = 0.0003580744932756107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.0%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 313.66 us (93.1%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579149086697064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2645e+05 | 513024 | 1 | 6.208e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0766213614575513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17607476647904452, dt = 0.0003579149086697064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.1%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 338.05 us (93.3%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (72.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035776932545537697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2372e+05 | 513024 | 1 | 6.228e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0688273370187567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17643268138771423, dt = 0.00035776932545537697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 343.65 us (93.5%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (69.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763632780757627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1836e+05 | 513024 | 1 | 6.269e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0545373221142307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1767904507131696, dt = 0.0002683728162421739
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 318.94 us (93.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035754453689515936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2458e+05 | 513024 | 1 | 6.222e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5528654699977151 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 382.238999372 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.17705882352941177, dt = 0.00035754453689515936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.40 us (3.1%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 397.32 us (92.9%)
LB move op cnt : 0
LB apply : 5.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (75.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035743059449892296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9153e+05 | 513024 | 1 | 6.481e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9859243901042394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17741636806630692, dt = 0.00035743059449892296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.0%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 1.51 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 343.73 us (93.4%)
LB move op cnt : 0
LB apply : 4.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035732614435745247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9722e+05 | 513024 | 1 | 6.435e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9995531913158726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17777379866080584, dt = 0.00035732614435745247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.3%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 299.27 us (92.4%)
LB move op cnt : 0
LB apply : 5.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (74.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723029528916676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9758e+05 | 513024 | 1 | 6.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.999875343705491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1781311248051633, dt = 0.00035723029528916676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.4%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 291.18 us (92.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (76.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9600
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035714225167267425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1042e+05 | 513024 | 1 | 6.330e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0315366426073034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17848835510045247, dt = 0.00035714225167267425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 317.73 us (93.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (63.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570613021779508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3679e+05 | 513024 | 1 | 6.131e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0971071209302523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17884549735212515, dt = 0.00027214970669839356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.0%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 351.17 us (93.6%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (50.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700423876389625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1816e+05 | 513024 | 1 | 6.270e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5624643249394612 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 388.25538536100004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.17911764705882355, dt = 0.00035700423876389625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.76 us (3.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 376.27 us (92.8%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569342586652023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0244e+05 | 513024 | 1 | 6.393e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0102568046142872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17947465129758744, dt = 0.0003569342586652023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 293.18 us (92.7%)
LB move op cnt : 0
LB apply : 4.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (74.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568697714933654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0293e+05 | 513024 | 1 | 6.389e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0110962549117373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17983158555625264, dt = 0.0003568697714933654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 338.14 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035681030439356623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3022e+05 | 513024 | 1 | 6.179e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0790561427712344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18018845532774602, dt = 0.00035681030439356623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.8%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.50 us (0.4%)
split / merge op : 0/0
apply split merge : 17.97 us (5.0%)
LB compute : 320.81 us (88.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (73.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035675543186070664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1830e+05 | 513024 | 1 | 6.269e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0488650503651593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1805452656321396, dt = 0.00035675543186070664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.53 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 374.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670477049379757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2986e+05 | 513024 | 1 | 6.182e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0775047869613372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1809020210640003, dt = 0.0002744495242349987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.9%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 357.55 us (93.8%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (74.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035666858930368797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2614e+05 | 513024 | 1 | 6.210e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5910334608852552 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 394.175171336 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.1811764705882353, dt = 0.00035666858930368797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.54 us (3.2%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 399.74 us (93.2%)
LB move op cnt : 0
LB apply : 4.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566246628954855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2442e+05 | 513024 | 1 | 6.223e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0633758979345314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.181533139177539, dt = 0.0003566246628954855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.3%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 291.56 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565843216947165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2142e+05 | 513024 | 1 | 6.246e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.055620811735681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18188976384043448, dt = 0.0003565843216947165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.9%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 319.72 us (93.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565472715790682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2233e+05 | 513024 | 1 | 6.239e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0576698157892905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1822463481621292, dt = 0.0003565472715790682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 293.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (72.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651324633446707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2349e+05 | 513024 | 1 | 6.230e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0603581260181216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18260289543370828, dt = 0.00035651324633446707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 343.37 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035648200474413855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1976e+05 | 513024 | 1 | 6.258e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050812124269863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18295940868004273, dt = 0.00027588543760434514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.2%)
patch tree reduce : 2.75 us (0.8%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 320.86 us (92.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564597014121874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2523e+05 | 513024 | 1 | 6.217e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.59760871622538 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 400.106750824 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.18323529411764708, dt = 0.0003564597014121874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.26 us (3.3%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 368.12 us (92.8%)
LB move op cnt : 0
LB apply : 4.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13696
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564328652524679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2134e+05 | 513024 | 1 | 6.246e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0544512603339293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18359175381905926, dt = 0.0003564328652524679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 324.33 us (93.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (67.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564082463804862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2686e+05 | 513024 | 1 | 6.204e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.06812483473081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18394818668431173, dt = 0.0003564082463804862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.1%)
patch tree reduce : 2.60 us (0.8%)
gen split merge : 1.58 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 311.73 us (92.8%)
LB move op cnt : 0
LB apply : 4.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563854469353332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1498e+05 | 513024 | 1 | 6.295e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.038267577157809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1843045949306922, dt = 0.0003563854469353332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 299.26 us (92.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (72.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035636433663975667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4211e+05 | 513024 | 1 | 7.990e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6058134776278103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18466098037762754, dt = 0.00035636433663975667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 355.91 us (94.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563447967747453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1799e+05 | 513024 | 1 | 6.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0455233224078664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1850173447142673, dt = 0.00027677293279151916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.9%)
patch tree reduce : 2.38 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 351.47 us (93.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (67.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035633067842843336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0825e+05 | 513024 | 1 | 6.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.569762358473724 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 406.18765695800005 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.18529411764705883, dt = 0.00035633067842843336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.30 us (2.8%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 450.94 us (93.8%)
LB move op cnt : 0
LB apply : 5.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (82.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563136702297776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4817e+05 | 513024 | 1 | 6.049e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.120814584866514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18565044832548727, dt = 0.0003563136702297776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 329.44 us (93.3%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562979652439833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3574e+05 | 513024 | 1 | 6.139e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0896239055975574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18600676199571706, dt = 0.0003562979652439833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.5%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 279.70 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (69.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035628348223856396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3954e+05 | 513024 | 1 | 6.111e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0990401264481044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18636305996096103, dt = 0.00035628348223856396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 298.00 us (92.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12672
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 400
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562704317510763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9150e+05 | 513024 | 1 | 6.482e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9788503473317065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1867193434431996, dt = 0.0003562704317510763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.1%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 299.62 us (92.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12608
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 384
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035625896371179453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2206e+05 | 513024 | 1 | 6.241e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.055164990173974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18707561387495067, dt = 0.0002773273015199418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 2.55 us (0.8%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 305.59 us (93.0%)
LB move op cnt : 0
LB apply : 4.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12608
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 384
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035625120792505014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9939e+05 | 513024 | 1 | 6.418e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5556661272292476 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 412.12152243 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.1873529411764706, dt = 0.00035625120792505014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.28 us (3.6%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 339.27 us (91.8%)
LB move op cnt : 0
LB apply : 4.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (77.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12608
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 384
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 64128 [AMRGrid][rank=0]
Info: cfl dt = 0.00035624239257806836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2906e+05 | 513024 | 1 | 6.188e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0725554361898073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18770919238439565, dt = 0.00035624239257806836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.65 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 313.05 us (92.9%)
LB move op cnt : 0
LB apply : 4.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.4%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 16704
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1344
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1280 blocks
Info: process block count = 73088 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 65920 [AMR Grid][rank=0]
Info: cfl dt = 0.00036425628125983593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3525e+05 | 527360 | 1 | 6.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0312330991755623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1880654347769737, dt = 0.00036425628125983593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 318.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (70.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036346148586473265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1909e+05 | 527360 | 1 | 7.334e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7880741792293133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18842969105823354, dt = 0.00036346148586473265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.9%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 340.44 us (93.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (76.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003627577737506149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5009e+05 | 527360 | 1 | 6.204e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.109208259805259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18879315254409826, dt = 0.0003627577737506149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 314.96 us (93.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003621332147693391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3875e+05 | 527360 | 1 | 6.287e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.077030836764564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18915591031784887, dt = 0.00025585438803349403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 280.58 us (92.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (61.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003617377358174297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3423e+05 | 527360 | 1 | 6.322e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4570407416231672 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 418.175184374 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.18941176470588236, dt = 0.0003617377358174297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.30 us (3.2%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 389.04 us (93.1%)
LB move op cnt : 0
LB apply : 4.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (74.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036122513283485494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2585e+05 | 527360 | 1 | 6.386e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039351866182578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1897735024416998, dt = 0.00036122513283485494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.0%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 319.35 us (93.0%)
LB move op cnt : 0
LB apply : 4.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (81.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003607674730544954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2889e+05 | 527360 | 1 | 6.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.043938219509362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19013472757453465, dt = 0.0003607674730544954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 329.50 us (93.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00036035802302707804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8403e+05 | 527360 | 1 | 6.726e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9308872524189422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19049549504758914, dt = 0.00036035802302707804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.0%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 327.36 us (93.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.000359990967560399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6789e+05 | 527360 | 1 | 6.868e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8889762301886657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19085585307061623, dt = 0.000359990967560399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 320.46 us (93.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035966127075041113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5216e+05 | 527360 | 1 | 7.011e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8484040468584928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19121584403817662, dt = 0.00025474419711751795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.07 us (2.0%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 376.16 us (93.6%)
LB move op cnt : 0
LB apply : 5.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (79.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594496708260815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0571e+05 | 527360 | 1 | 6.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4011274635330808 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 424.42187270100004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.19147058823529414, dt = 0.0003594496708260815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.36 us (3.0%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 416.50 us (93.3%)
LB move op cnt : 0
LB apply : 5.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (76.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035917379652500433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7168e+05 | 527360 | 1 | 6.834e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8935354357930438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19183003790612022, dt = 0.00035917379652500433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 318.01 us (92.7%)
LB move op cnt : 0
LB apply : 5.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (55.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589247332647046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0711e+05 | 527360 | 1 | 6.534e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.978931767069392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19218921170264522, dt = 0.0003589247332647046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.3%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 312.45 us (92.6%)
LB move op cnt : 0
LB apply : 4.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (77.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586994650351131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1091e+05 | 527360 | 1 | 6.503e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9868667167519323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19254813643590993, dt = 0.0003586994650351131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 2.47 us (0.6%)
gen split merge : 1.33 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 358.39 us (93.6%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (74.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584953545942367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1796e+05 | 527360 | 1 | 6.447e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.002901671327411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19290683590094504, dt = 0.0003584953545942367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (1.9%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 342.49 us (93.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035831009130156036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1455e+05 | 527360 | 1 | 6.474e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.993401105863018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19326533125553927, dt = 0.0002640805091666254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.0%)
patch tree reduce : 2.49 us (0.7%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 348.28 us (93.4%)
LB move op cnt : 0
LB apply : 4.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (74.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035818522197941457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9116e+05 | 527360 | 1 | 6.666e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4262587149057788 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 430.630261883 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.1935294117647059, dt = 0.00035818522197941457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.94 us (2.8%)
patch tree reduce : 2.06 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 462.33 us (93.6%)
LB move op cnt : 0
LB apply : 6.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (83.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035802793270888936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2573e+05 | 527360 | 1 | 6.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0190133561021884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1938875969866853, dt = 0.00035802793270888936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (2.3%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 330.18 us (93.0%)
LB move op cnt : 0
LB apply : 4.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578845102839074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1686e+05 | 527360 | 1 | 6.456e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9964642751514403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1942456249193942, dt = 0.0003578845102839074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 325.35 us (93.2%)
LB move op cnt : 0
LB apply : 4.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (74.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577535305354696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2447e+05 | 527360 | 1 | 6.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0142447162736694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1946035094296781, dt = 0.0003577535305354696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.0%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 330.64 us (93.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763373696581573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9143e+05 | 527360 | 1 | 6.663e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9328314429281157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19496126296021357, dt = 0.00035763373696581573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 317.45 us (93.1%)
LB move op cnt : 0
LB apply : 4.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575240169201255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2938e+05 | 527360 | 1 | 6.358e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024835476919691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1953188966971794, dt = 0.00026933859693828444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.7%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 349.51 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574478099609277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8247e+05 | 527360 | 1 | 6.740e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4386759355199885 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 436.80440936 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.19558823529411767, dt = 0.0003574478099609277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.70 us (3.0%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 422.12 us (93.4%)
LB move op cnt : 0
LB apply : 5.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (79.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035735339935202273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7863e+05 | 527360 | 1 | 6.773e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8999484992408384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959456831040786, dt = 0.00035735339935202273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.0%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 324.83 us (93.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11328
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572666070989576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9683e+05 | 527360 | 1 | 6.618e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9438411781928089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19630303650343062, dt = 0.0003572666070989576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.31 us (2.4%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 314.72 us (92.6%)
LB move op cnt : 0
LB apply : 4.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571867178173197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8564e+05 | 527360 | 1 | 6.713e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9160588270444552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19666030311052957, dt = 0.0003571867178173197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.1%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 322.60 us (92.9%)
LB move op cnt : 0
LB apply : 5.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035711309333958427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9935e+05 | 527360 | 1 | 6.597e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9490608840500725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19701748982834688, dt = 0.00035711309333958427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.2%)
patch tree reduce : 2.43 us (0.7%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 330.59 us (92.7%)
LB move op cnt : 0
LB apply : 5.69 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (79.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570451635229932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8464e+05 | 527360 | 1 | 6.721e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9128039444144809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19737460292168646, dt = 0.0002724559018429662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.3%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.53 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 309.56 us (92.6%)
LB move op cnt : 0
LB apply : 4.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (74.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569970508320372 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9684e+05 | 527360 | 1 | 6.618e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4820504644593266 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 443.069555024 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.19764705882352943, dt = 0.0003569970508320372
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.12 us (3.5%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 378.09 us (92.6%)
LB move op cnt : 0
LB apply : 4.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (80.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569379336282611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2308e+05 | 527360 | 1 | 6.407e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0058705583076604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19800405587436146, dt = 0.0003569379336282611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.2%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 304.28 us (92.5%)
LB move op cnt : 0
LB apply : 4.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (76.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035688322870398663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2038e+05 | 527360 | 1 | 6.428e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9989626098046727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19836099380798972, dt = 0.00035688322870398663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.33 us (2.4%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 319.20 us (92.0%)
LB move op cnt : 0
LB apply : 6.03 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (77.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568325578358454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2717e+05 | 527360 | 1 | 6.375e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.015201225369616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1987178770366937, dt = 0.0003568325578358454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.95 us (2.3%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 321.09 us (92.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (73.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567855846685629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3338e+05 | 527360 | 1 | 6.328e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0300281772806623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19907470959452953, dt = 0.0003567855846685629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (2.2%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 323.88 us (92.9%)
LB move op cnt : 0
LB apply : 5.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567420086283451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9790e+05 | 527360 | 1 | 6.609e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9433420004532809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1994314951791981, dt = 0.0002743871737430903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (1.9%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 347.66 us (93.4%)
LB move op cnt : 0
LB apply : 4.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567107507737707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0001e+05 | 527360 | 1 | 6.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4984994643970586 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 449.24409195600003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.19970588235294118, dt = 0.0003567107507737707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.89 us (3.2%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 377.36 us (93.0%)
LB move op cnt : 0
LB apply : 4.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (78.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035667252822187286 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 527360 | 1 | 7.135e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7998674449121823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20006259310371494, dt = 0.00035667252822187286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.9%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 348.66 us (93.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035663701398735693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1839e+05 | 527360 | 1 | 6.444e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9926128284058366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20041926563193682, dt = 0.00035663701398735693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (1.7%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 391.82 us (94.2%)
LB move op cnt : 0
LB apply : 5.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (79.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566040019569127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1251e+05 | 527360 | 1 | 6.491e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9781034161114797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20077590264592418, dt = 0.0003566040019569127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.8%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 322.88 us (93.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565733049909265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1044e+05 | 527360 | 1 | 6.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9728790526802722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2011325066478811, dt = 0.0003565733049909265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (2.5%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 295.10 us (92.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 15424
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 832
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565447873939961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2076e+05 | 527360 | 1 | 6.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.997843615969199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20148907995287202, dt = 0.0002756259294809382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.0%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 352.15 us (93.8%)
LB move op cnt : 0
LB apply : 4.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (77.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035652430699359324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9507e+05 | 527360 | 1 | 6.633e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.495967319354207 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 455.48070286 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.20176470588235296, dt = 0.00035652430699359324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.44 us (3.0%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 382.74 us (92.9%)
LB move op cnt : 0
LB apply : 5.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (76.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649948142530563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4234e+05 | 527360 | 1 | 7.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8067090441686742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20212123018934655, dt = 0.00035649948142530563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 306.69 us (93.0%)
LB move op cnt : 0
LB apply : 4.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647652891509867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8034e+05 | 527360 | 1 | 6.758e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8990586379437413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20247772967077185, dt = 0.00035647652891509867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.11 us (2.6%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 330.21 us (92.5%)
LB move op cnt : 0
LB apply : 4.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (79.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035645519720796186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8579e+05 | 527360 | 1 | 6.711e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9121900087435262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20283420619968695, dt = 0.00035645519720796186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.61 us (2.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 319.43 us (92.7%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564352733664106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2386e+05 | 527360 | 1 | 6.401e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.004719102558235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2031906613968949, dt = 0.0003564352733664106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.2%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 327.89 us (93.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (72.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035641664950838373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0057e+05 | 527360 | 1 | 6.587e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9479467813122529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2035470966702613, dt = 0.00027643274150340735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.2%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 314.54 us (93.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (75.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564030712218831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8371e+05 | 527360 | 1 | 6.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.478905424692123 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 462.06304413500004 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 140
amr::Godunov: t = 0.2038235294117647, dt = 0.0003564030712218831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.75 us (3.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 343.84 us (91.7%)
LB move op cnt : 0
LB apply : 5.88 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (81.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563865633981499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2308e+05 | 527360 | 1 | 6.407e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.002527173631899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2041799324829866, dt = 0.0003563865633981499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 2.59 us (0.7%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 333.65 us (93.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035637156528839196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2734e+05 | 527360 | 1 | 6.374e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0127957827736447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20453631904638475, dt = 0.00035637156528839196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.70 us (2.3%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 348.01 us (92.9%)
LB move op cnt : 0
LB apply : 4.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (77.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035635793817178295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0259e+05 | 527360 | 1 | 6.571e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9525048463179209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20489269061167315, dt = 0.00035635793817178295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.81 us (2.0%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 360.10 us (93.5%)
LB move op cnt : 0
LB apply : 4.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (76.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 65920 [AMRGrid][rank=0]
Info: cfl dt = 0.00035634576430140053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2472e+05 | 527360 | 1 | 6.394e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0062653860037654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20524904854984494, dt = 0.00035634576430140053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 315.58 us (93.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (59.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 18496
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1600
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1024 blocks
Info: process block count = 73088 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 65920 [AMR Grid][rank=0]
Info: cfl dt = 0.0003649547308325944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0538e+05 | 527360 | 1 | 6.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9591463025568507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20560539431414634, dt = 0.00027695862703014384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 65920.0 min = 65920.0 factor = 1
- strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 65920
max = 65920
avg = 65920
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 325.48 us (93.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 14400
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Info: process block count = 65920 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 64128 [AMR Grid][rank=0]
Info: cfl dt = 0.00036430050896169426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8235e+05 | 513024 | 1 | 6.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5204785735105173 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 468.255773839 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 138
amr::Godunov: t = 0.2058823529411765, dt = 0.00036430050896169426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 64128.0 min = 64128.0 factor = 1
- strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 64128
max = 64128
avg = 64128
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.55 us (3.5%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 352.06 us (92.0%)
LB move op cnt : 0
LB apply : 5.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (77.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13632
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 64
Info: process block count = 64128 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 448 new block count = 63680 [AMR Grid][rank=0]
Info: cfl dt = 0.0003635196341147568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9909e+05 | 509440 | 1 | 6.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0571326176622735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20624665345013818, dt = 0.0003635196341147568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.4%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 280.57 us (92.1%)
LB move op cnt : 0
LB apply : 4.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (76.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003628272765052454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2081e+05 | 509440 | 1 | 6.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.108539937745755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20661017308425295, dt = 0.0003628272765052454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (2.2%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 331.66 us (92.9%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622118949823672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1698e+05 | 509440 | 1 | 6.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.094706805990638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2069730003607582, dt = 0.0003622118949823672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.0%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 342.93 us (93.5%)
LB move op cnt : 0
LB apply : 4.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (76.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00036166364919973257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1761e+05 | 509440 | 1 | 6.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0927478661725107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20733521225574056, dt = 0.00036166364919973257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 272.62 us (92.2%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003611741160711727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2645e+05 | 509440 | 1 | 6.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1121747045067467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076968759049403, dt = 0.000244300565647948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.66 us (3.4%)
patch tree reduce : 2.70 us (0.9%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 287.75 us (90.7%)
LB move op cnt : 0
LB apply : 4.86 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (76.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00036087544936079735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9644e+05 | 509440 | 1 | 6.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.374955868342494 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 474.254167552 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.20794117647058824, dt = 0.00036087544936079735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.99 us (3.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 354.95 us (92.2%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (81.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00036046828413682395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3343e+05 | 509440 | 1 | 6.113e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.125383905341741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20830205191994905, dt = 0.00036046828413682395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 279.13 us (91.9%)
LB move op cnt : 0
LB apply : 4.78 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601026754378304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2140e+05 | 509440 | 1 | 6.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0923361916818077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20866252020408588, dt = 0.0003601026754378304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.2%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.58 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 321.80 us (92.7%)
LB move op cnt : 0
LB apply : 5.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (76.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597737266742551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1747e+05 | 509440 | 1 | 6.232e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.080224474213658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2090226228795237, dt = 0.0003597737266742551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.0%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 323.35 us (93.1%)
LB move op cnt : 0
LB apply : 4.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (70.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594771870362924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2282e+05 | 509440 | 1 | 6.191e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0919096237176675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20938239660619795, dt = 0.0003594771870362924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 2.54 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 325.71 us (93.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (73.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035920935744633136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1989e+05 | 509440 | 1 | 6.213e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0827533933909175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20974187379323425, dt = 0.0002581262067657686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (2.3%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 322.36 us (93.1%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (74.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035903408701548243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8724e+05 | 509440 | 1 | 6.471e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4359862599307593 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 480.23939847 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 136
amr::Godunov: t = 0.21000000000000002, dt = 0.00035903408701548243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.70 us (3.3%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 385.93 us (92.5%)
LB move op cnt : 0
LB apply : 5.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (82.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588081527404442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2923e+05 | 509440 | 1 | 6.144e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103878267200809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2103590340870155, dt = 0.0003588081527404442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 371.56 us (93.9%)
LB move op cnt : 0
LB apply : 4.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (76.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035860309890359835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2197e+05 | 509440 | 1 | 6.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084138668108207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21071784223975595, dt = 0.00035860309890359835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 335.20 us (93.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (72.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.00035841667962219784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0291e+05 | 509440 | 1 | 6.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0346453920183767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21107644533865955, dt = 0.00035841667962219784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.7%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 393.29 us (94.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (72.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 63680 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582469216574335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5373e+05 | 509440 | 1 | 6.759e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9090212419890125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21143486201828174, dt = 0.0003582469216574335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 63680.0 min = 63680.0 factor = 1
- strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 63680
max = 63680
avg = 63680
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (1.9%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 374.60 us (93.8%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1280
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Info: process block count = 63680 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 56512 [AMR Grid][rank=0]
Info: cfl dt = 0.00035809208816055087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1736e+05 | 452096 | 1 | 6.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.04640019778954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21179310893993916, dt = 0.00026571458947260984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.0%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.54 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 328.60 us (93.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 256
Derefinement 2:1 balance converge in 1 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 54720 [AMR Grid][rank=0]
Info: cfl dt = 0.00035798654680422286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1166e+05 | 437760 | 1 | 6.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.55509483168894 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 486.25621724700005 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.21205882352941177, dt = 0.00035798654680422286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.91 us (3.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 384.06 us (92.8%)
LB move op cnt : 0
LB apply : 5.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (78.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035785409823036596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2762e+05 | 437760 | 1 | 5.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4364966300399113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.212416810076216, dt = 0.00035785409823036596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 324.98 us (93.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577327952526288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2168e+05 | 437760 | 1 | 5.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.418115898088327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21277466417444635, dt = 0.0003577327952526288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.9%)
patch tree reduce : 2.41 us (0.6%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 353.85 us (93.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (76.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035762154274382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1329e+05 | 437760 | 1 | 5.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.39259190223144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.213132396969699, dt = 0.00035762154274382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (1.9%)
patch tree reduce : 2.47 us (0.6%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 372.63 us (93.5%)
LB move op cnt : 0
LB apply : 5.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (76.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035751936883738277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2524e+05 | 437760 | 1 | 5.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426993578703808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21349001851244281, dt = 0.00035751936883738277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.6%)
patch tree reduce : 2.43 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 372.33 us (94.0%)
LB move op cnt : 0
LB apply : 4.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574254096241559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0851e+05 | 437760 | 1 | 5.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3771174569996614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2138475378812802, dt = 0.0002701091775433595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 326.37 us (93.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 3200
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573596954973247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1859e+05 | 437760 | 1 | 5.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8183371559721893 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 491.405719561 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.21411764705882355, dt = 0.0003573596954973247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.01 us (3.2%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 381.08 us (92.8%)
LB move op cnt : 0
LB apply : 5.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (78.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572783199193289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0603e+05 | 437760 | 1 | 5.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3687815425209835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21447500675432088, dt = 0.0003572783199193289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.79 us (2.1%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 350.40 us (93.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (75.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572032377441274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6188e+05 | 437760 | 1 | 5.746e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.238517218520717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2148322850742402, dt = 0.0003572032377441274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 324.25 us (93.2%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (80.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571338853491567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9530e+05 | 437760 | 1 | 5.504e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3362121439419536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21518948831198434, dt = 0.0003571338853491567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (2.2%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 341.72 us (93.2%)
LB move op cnt : 0
LB apply : 4.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035706976623398333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2491e+05 | 437760 | 1 | 6.039e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.12904309720182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2155466221973335, dt = 0.00035706976623398333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.77 us (2.1%)
patch tree reduce : 2.40 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 349.22 us (93.4%)
LB move op cnt : 0
LB apply : 4.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (71.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035701044334446287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9744e+05 | 437760 | 1 | 5.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3416162676941172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21590369196356748, dt = 0.00027277862466781877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 31.56 us (8.3%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 330.22 us (87.2%)
LB move op cnt : 0
LB apply : 4.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (77.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569682754887675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8178e+05 | 437760 | 1 | 5.600e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.75372978557521 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 496.735474129 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.2161764705882353, dt = 0.0003569682754887675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.67 us (3.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 330.82 us (91.9%)
LB move op cnt : 0
LB apply : 4.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (74.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035691645962427515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1894e+05 | 437760 | 1 | 5.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.404070033535404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21653343886372406, dt = 0.00035691645962427515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 331.40 us (93.7%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (73.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035686843721687277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2385e+05 | 437760 | 1 | 5.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.418126273481874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21689035532334833, dt = 0.00035686843721687277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.1%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 345.30 us (93.4%)
LB move op cnt : 0
LB apply : 4.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (77.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568239068131946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2970e+05 | 437760 | 1 | 5.276e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4349775665229187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2172472237605652, dt = 0.0003568239068131946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (1.9%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 343.75 us (93.4%)
LB move op cnt : 0
LB apply : 4.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (79.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567825945403292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0576e+05 | 437760 | 1 | 5.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3644404830210526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2176040476673784, dt = 0.0003567825945403292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (2.2%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 333.00 us (92.8%)
LB move op cnt : 0
LB apply : 4.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (78.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567442512963625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1619e+05 | 437760 | 1 | 5.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3947674633601888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21796083026191873, dt = 0.00027446385572835186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.9%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 366.80 us (93.8%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (77.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567167310457999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4114e+05 | 437760 | 1 | 5.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8985292559970948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 501.88186568000003 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.21823529411764708, dt = 0.0003567167310457999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.52 us (2.7%)
patch tree reduce : 2.15 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 474.32 us (94.0%)
LB move op cnt : 0
LB apply : 5.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (81.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566830909799559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4705e+05 | 437760 | 1 | 5.860e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1914847665749932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21859201084869287, dt = 0.0003566830909799559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.1%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 348.21 us (93.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035665184021632743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1126e+05 | 437760 | 1 | 5.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3796331351165647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2189486939396728, dt = 0.00035665184021632743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.0%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 351.27 us (93.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 7296
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662280271288543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2508e+05 | 437760 | 1 | 5.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4199465274732055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21930534577988914, dt = 0.00035662280271288543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.9%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 331.93 us (93.5%)
LB move op cnt : 0
LB apply : 4.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565958859211479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2163e+05 | 437760 | 1 | 5.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4096454976365704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21966196858260204, dt = 0.0003565958859211479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.8%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.49 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 345.44 us (93.6%)
LB move op cnt : 0
LB apply : 4.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (49.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035657102137325204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4210e+05 | 437760 | 1 | 5.899e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1762218210170863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2200185644685232, dt = 0.00027555317853564243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (2.3%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 317.00 us (92.8%)
LB move op cnt : 0
LB apply : 4.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565531889178528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4617e+05 | 437760 | 1 | 5.867e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.690870016817659 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 507.17924502000005 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.22029411764705883, dt = 0.0003565531889178528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.21 us (3.1%)
patch tree reduce : 2.44 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 427.95 us (93.1%)
LB move op cnt : 0
LB apply : 5.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (83.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565315905838721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2238e+05 | 437760 | 1 | 5.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4113592110995303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2206506708359767, dt = 0.0003565315905838721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (1.9%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 354.54 us (93.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565114825803927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1656e+05 | 437760 | 1 | 5.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.39416909477511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22100720242656058, dt = 0.0003565114825803927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.0%)
patch tree reduce : 2.49 us (0.7%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 315.64 us (92.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564927448559652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1878e+05 | 437760 | 1 | 5.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4005159489581414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22136371390914097, dt = 0.0003564927448559652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 317.17 us (93.0%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (77.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564752835687773 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1285e+05 | 437760 | 1 | 5.385e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3830204379012176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22172020665399694, dt = 0.0003564752835687773
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 284.95 us (92.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035645901259069384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1482e+05 | 437760 | 1 | 5.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3886752830330185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22207668193756572, dt = 0.0002762592389048968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (2.3%)
patch tree reduce : 2.61 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 308.41 us (92.2%)
LB move op cnt : 0
LB apply : 5.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (75.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035644744112192227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0457e+05 | 437760 | 1 | 5.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8278692262646057 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 512.373630082 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 120
amr::Godunov: t = 0.22235294117647061, dt = 0.00035644744112192227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.73 us (3.0%)
patch tree reduce : 2.25 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 422.40 us (93.2%)
LB move op cnt : 0
LB apply : 5.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (81.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035643370227213093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1993e+05 | 437760 | 1 | 5.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4034830567798693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22270938861759254, dt = 0.00035643370227213093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (2.2%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 335.73 us (93.1%)
LB move op cnt : 0
LB apply : 4.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (79.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 6272
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 64
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 54720 [AMRGrid][rank=0]
Info: cfl dt = 0.00035642129668396656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1567e+05 | 437760 | 1 | 5.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3908878954428427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22306582231986466, dt = 0.00035642129668396656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 54720.0 min = 54720.0 factor = 1
- strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 54720
max = 54720
avg = 54720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.22 us (3.7%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 302.59 us (91.0%)
LB move op cnt : 0
LB apply : 5.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (76.5%)
Refinement 2:1 balance converged in 2 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 10368
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1088
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1280 blocks
Info: process block count = 63680 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 56512 [AMR Grid][rank=0]
Info: cfl dt = 0.0003650348028069794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0676e+05 | 452096 | 1 | 5.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2897188262740045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22342224361654864, dt = 0.0003650348028069794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 343.27 us (93.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8064
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003641794144262805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0484e+05 | 452096 | 1 | 5.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3394721170886195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2237872784193556, dt = 0.0003641794144262805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.9%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 353.67 us (93.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00036342238707362117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0103e+05 | 452096 | 1 | 5.644e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.322943278543244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2241514578337819, dt = 0.0002603068721004631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.2%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 326.15 us (92.9%)
LB move op cnt : 0
LB apply : 4.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629377293772462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0799e+05 | 452096 | 1 | 5.595e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6747923044407846 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 517.627381431 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 122
amr::Godunov: t = 0.22441176470588237, dt = 0.0003629377293772462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.79 us (3.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 374.51 us (92.6%)
LB move op cnt : 0
LB apply : 5.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (81.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00036231983620192666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1869e+05 | 452096 | 1 | 5.522e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.366048467858727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2247747024352596, dt = 0.00036231983620192666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 275.88 us (92.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003617694721043308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2699e+05 | 452096 | 1 | 5.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.385961748178474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2251370222714615, dt = 0.0003617694721043308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 274.45 us (92.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 13184
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00036127818290846114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1250e+05 | 452096 | 1 | 5.564e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3406050871480453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22549879174356585, dt = 0.00036127818290846114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 339.58 us (93.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (73.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 17280
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00036083870179672316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1628e+05 | 452096 | 1 | 5.538e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3483048937766164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258600699264743, dt = 0.00036083870179672316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.2%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 315.10 us (92.7%)
LB move op cnt : 0
LB apply : 4.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 17280
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.000360444762277035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1467e+05 | 452096 | 1 | 5.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.340807954963055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22622090862827104, dt = 0.0002496796070231011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.5%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 275.86 us (92.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (68.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 17280
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601978721803255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2237e+05 | 452096 | 1 | 5.497e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6350115934798104 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 522.960419302 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 122
amr::Godunov: t = 0.22647058823529415, dt = 0.0003601978721803255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.91 us (3.2%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 373.80 us (93.0%)
LB move op cnt : 0
LB apply : 4.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (74.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 17280
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 56512 [AMRGrid][rank=0]
Info: cfl dt = 0.00035986879767503855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1763e+05 | 452096 | 1 | 5.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345152680373633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22683078610747448, dt = 0.00035986879767503855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 56512.0 min = 56512.0 factor = 1
- strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 56512
max = 56512
avg = 56512
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.8%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 362.75 us (93.7%)
LB move op cnt : 0
LB apply : 4.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 21376
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1600
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.00035957227698985966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9872e+05 | 394752 | 1 | 5.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.293108134386433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22719065490514953, dt = 0.00035957227698985966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 343.56 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (74.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593045878023292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1071e+05 | 394752 | 1 | 4.869e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6584634480461897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22755022718213938, dt = 0.0003593045878023292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.1%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 306.00 us (92.6%)
LB move op cnt : 0
LB apply : 5.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (76.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003590624818685468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9259e+05 | 394752 | 1 | 4.981e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5971045522927843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22790953176994172, dt = 0.0003590624818685468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.0%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 357.44 us (93.6%)
LB move op cnt : 0
LB apply : 4.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (72.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035884312005004355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8872e+05 | 394752 | 1 | 5.005e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.582678632087789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22826859425181026, dt = 0.00026081751289563915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 322.67 us (93.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035869752337495963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9324e+05 | 394752 | 1 | 4.976e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.886773793633177 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 528.299710087 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.2285294117647059, dt = 0.00035869752337495963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.79 us (3.1%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 382.08 us (93.0%)
LB move op cnt : 0
LB apply : 4.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003585116516979468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0156e+05 | 394752 | 1 | 5.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.294946392365827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22888810928808087, dt = 0.0003585116516979468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.1%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 328.95 us (92.9%)
LB move op cnt : 0
LB apply : 4.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583424503019793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6176e+05 | 394752 | 1 | 5.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4905602778881866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22924662093977882, dt = 0.0003583424503019793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.49 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 312.21 us (93.0%)
LB move op cnt : 0
LB apply : 4.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035818816859743306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9379e+05 | 394752 | 1 | 4.973e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5940683922266694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2296049633900808, dt = 0.00035818816859743306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.0%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 334.69 us (93.4%)
LB move op cnt : 0
LB apply : 4.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (76.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580472629700802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8980e+05 | 394752 | 1 | 4.998e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.579910701775454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22996315155867822, dt = 0.0003580472629700802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.18 us (3.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 348.06 us (92.2%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (73.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579183701459553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9847e+05 | 394752 | 1 | 4.944e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6072155329279734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2303211988216483, dt = 0.0002670364724693397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.0%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 350.00 us (93.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035782979442200164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6363e+05 | 394752 | 1 | 5.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8596535163549315 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 533.1698384910001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.23058823529411765, dt = 0.00035782979442200164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.29 us (3.2%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 411.79 us (93.0%)
LB move op cnt : 0
LB apply : 5.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (80.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577190249277128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5494e+05 | 394752 | 1 | 5.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4635780186379836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23094606508853965, dt = 0.0003577190249277128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 307.20 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576172959122416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1436e+05 | 394752 | 1 | 5.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.330444331195824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23130378411346736, dt = 0.0003576172959122416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 277.42 us (92.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (72.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035752374784790854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9172e+05 | 394752 | 1 | 5.707e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.255931407729246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2316614014093796, dt = 0.00035752374784790854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.0%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 327.42 us (93.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (78.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 4992
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574376149609093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7958e+05 | 394752 | 1 | 5.064e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5418093089197216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23201892515722752, dt = 0.0003574376149609093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.1%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 319.41 us (92.8%)
LB move op cnt : 0
LB apply : 4.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (80.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573582139079474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0550e+05 | 394752 | 1 | 4.901e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6256990381017786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23237636277218843, dt = 0.0002706960513410017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (1.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.35 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 368.39 us (93.7%)
LB move op cnt : 0
LB apply : 5.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (72.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000357302430473565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9241e+05 | 394752 | 1 | 4.982e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.956179217663729 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 538.100913704 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.23264705882352943, dt = 0.000357302430473565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.09 us (3.2%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 384.35 us (93.0%)
LB move op cnt : 0
LB apply : 5.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (80.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723339778894413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9934e+05 | 394752 | 1 | 4.938e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6046401877506065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.233004361254003, dt = 0.00035723339778894413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (1.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 357.36 us (93.9%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (74.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571695654738882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9577e+05 | 394752 | 1 | 4.961e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.592479335885224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23336159465179196, dt = 0.0003571695654738882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 307.88 us (93.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035711048154296447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9702e+05 | 394752 | 1 | 4.953e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.596108430533241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23371876421726584, dt = 0.00035711048154296447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.71 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 346.48 us (93.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (75.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570557396590581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0586e+05 | 394752 | 1 | 4.899e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.624453207356374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2340758746988088, dt = 0.0003570557396590581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 321.55 us (93.4%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570049739593084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9591e+05 | 394752 | 1 | 4.960e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5916479664414243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23443293043846786, dt = 0.0002729519144733239
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.0%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 343.94 us (93.4%)
LB move op cnt : 0
LB apply : 4.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (80.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569687797327231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4950e+05 | 394752 | 1 | 5.267e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.865675733717074 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 542.8809819730001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.23470588235294118, dt = 0.0003569687797327231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.40 us (3.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 371.43 us (92.4%)
LB move op cnt : 0
LB apply : 5.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (80.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569242346829856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0990e+05 | 394752 | 1 | 4.874e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.636579688251149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23506285113267392, dt = 0.0003569242346829856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 281.26 us (92.2%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (75.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568828303741636 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3631205945983895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2354197753673569, dt = 0.0003568828303741636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 275.21 us (91.8%)
LB move op cnt : 0
LB apply : 5.11 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (74.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568443168723391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5001e+05 | 394752 | 1 | 5.263e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.441032451341409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23577665819773105, dt = 0.0003568443168723391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 284.83 us (92.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680846752126553 [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 394752 | 1 | 5.493e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3388475080463738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23613350251460338, dt = 0.00035680846752126553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.59 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 272.75 us (92.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567750764752805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6040e+05 | 394752 | 1 | 5.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.474331668199512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23649031098212464, dt = 0.0002743949002283197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 291.85 us (92.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (77.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035675103353012045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4897e+05 | 394752 | 1 | 5.271e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8742183939078734 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 547.8103414860001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.23676470588235296, dt = 0.00035675103353012045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.39 us (3.0%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 418.77 us (93.4%)
LB move op cnt : 0
LB apply : 5.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (79.6%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 9088
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 576
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567215380970125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9340e+05 | 394752 | 1 | 4.975e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5812819384144645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23712145691588307, dt = 0.0003567215380970125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.0%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 349.14 us (93.4%)
LB move op cnt : 0
LB apply : 5.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (74.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8064
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035669402272150053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9301e+05 | 394752 | 1 | 4.978e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.579793416828759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2374781784539801, dt = 0.00035669402272150053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.0%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 343.56 us (93.3%)
LB move op cnt : 0
LB apply : 4.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (77.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8064
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035666834237609154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8871e+05 | 394752 | 1 | 5.005e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.565614123937638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2378348724767016, dt = 0.00035666834237609154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.9%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.52 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 340.18 us (93.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (73.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8064
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566443644729233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9756e+05 | 394752 | 1 | 4.949e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5942208400768285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2381915408190777, dt = 0.0003566443644729233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (1.9%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.66 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 345.92 us (93.5%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (72.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 8064
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566219676379163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4361e+05 | 394752 | 1 | 5.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.418562332367088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23854818518355062, dt = 0.0002753442282140972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.9%)
patch tree reduce : 2.52 us (0.7%)
gen split merge : 1.34 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 360.00 us (93.4%)
LB move op cnt : 0
LB apply : 4.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (79.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.000356605732093834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8696e+05 | 394752 | 1 | 5.016e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9760788761317272 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 552.616630837 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.2388235294117647, dt = 0.000356605732093834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.76 us (3.2%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 366.12 us (92.7%)
LB move op cnt : 0
LB apply : 4.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (75.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035658584493298006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7677e+05 | 394752 | 1 | 5.082e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5261521902925868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23918013514385855, dt = 0.00035658584493298006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.9%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 338.68 us (93.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (74.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035656717860292836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9353e+05 | 394752 | 1 | 4.975e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5805185452446917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23953672098879153, dt = 0.00035656717860292836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (0.9%)
patch tree reduce : 2.18 us (0.3%)
gen split merge : 1.15 us (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.1%)
LB compute : 726.79 us (97.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565495453411558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6175e+05 | 394752 | 1 | 5.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.477040560387848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23989328816739447, dt = 0.0003565495453411558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.0%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 316.58 us (93.3%)
LB move op cnt : 0
LB apply : 4.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (76.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035653296574542613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9393e+05 | 394752 | 1 | 4.972e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.581549681701507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24024983771273561, dt = 0.00035653296574542613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 291.97 us (92.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (57.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651774997842934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9633e+05 | 394752 | 1 | 4.957e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5892240883377995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24060637067848104, dt = 0.00027598226269545667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 302.39 us (92.8%)
LB move op cnt : 0
LB apply : 4.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (76.1%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 49344 [AMRGrid][rank=0]
Info: cfl dt = 0.00035650690271244394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2203e+05 | 394752 | 1 | 5.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8172462597716215 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 557.4527317110001 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 108
amr::Godunov: t = 0.2408823529411765, dt = 0.00035650690271244394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.28 us (2.9%)
patch tree reduce : 1.92 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 423.81 us (93.6%)
LB move op cnt : 0
LB apply : 5.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (81.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 16256
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 1344
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 1024
Will refine 1024 blocks
Info: process block count = 56512 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 7168 new block count = 49344 [AMR Grid][rank=0]
Info: cfl dt = 0.000365104433562608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7815e+05 | 394752 | 1 | 5.073e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5299339656747364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24123885984388893, dt = 0.000365104433562608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 49344.0 min = 49344.0 factor = 1
- strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 49344
max = 49344
avg = 49344
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.8%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 342.50 us (93.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 12160
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 320
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 256
Info: process block count = 49344 [AMRGrid][rank=0]
Info: patch 0 derefine block count = 1792 new block count = 47552 [AMR Grid][rank=0]
Info: cfl dt = 0.00036425127903227743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5922e+05 | 380416 | 1 | 5.011e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6231985264279762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24160396427745154, dt = 0.00036425127903227743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 364.52 us (93.9%)
LB move op cnt : 0
LB apply : 4.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (78.9%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036349618275401043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9339e+05 | 380416 | 1 | 4.795e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.734846402908447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24196821555648382, dt = 0.00036349618275401043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 298.09 us (92.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (76.2%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003628260546447656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9736e+05 | 380416 | 1 | 4.771e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7428139493571697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24233171173923782, dt = 0.0003628260546447656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.1%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 322.48 us (92.9%)
LB move op cnt : 0
LB apply : 4.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (81.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036222988627762837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9581e+05 | 380416 | 1 | 4.780e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.732436316981841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2426945377938826, dt = 0.0002466386767056572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.56 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 318.96 us (93.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036186500095613535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9701e+05 | 380416 | 1 | 4.773e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8602497558519422 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 562.151987618 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
amr::Godunov: t = 0.24294117647058824, dt = 0.00036186500095613535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.23 us (2.9%)
patch tree reduce : 2.00 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 429.16 us (93.7%)
LB move op cnt : 0
LB apply : 4.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (83.0%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003613722424642873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9211e+05 | 380416 | 1 | 4.803e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7125408639192723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24330304147154438, dt = 0.0003613722424642873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 292.02 us (92.6%)
LB move op cnt : 0
LB apply : 4.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (76.5%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036093122472298766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0255e+05 | 380416 | 1 | 4.740e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7445364808145167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24366441371400868, dt = 0.00036093122472298766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 334.37 us (93.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036053568065617963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2894e+05 | 380416 | 1 | 5.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4897695714203385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24402534493873168, dt = 0.00036053568065617963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.8%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.49 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 353.03 us (93.6%)
LB move op cnt : 0
LB apply : 4.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (75.7%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00036018019411918707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9934e+05 | 380416 | 1 | 4.759e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7272403175861233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24438588061938787, dt = 0.00036018019411918707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 30.28 us (3.1%)
patch tree reduce : 9.63 us (1.0%)
gen split merge : 4.89 us (0.5%)
split / merge op : 0/0
apply split merge : 5.37 us (0.5%)
LB compute : 877.39 us (89.6%)
LB move op cnt : 0
LB apply : 20.53 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.58 us (87.8%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.00035986007161203514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9896e+05 | 380416 | 1 | 4.761e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7232576810877833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24474606081350705, dt = 0.0002539391864929408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 47552.0 min = 47552.0 factor = 1
- strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 47552
max = 47552
avg = 47552
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 352.68 us (93.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.4%)
Refinement 2:1 balance converged in 1 sweeps
Count block's flag for derefinement [No geometry validity check and no 2:1 check] : 11392
Count block's flag for derefinement [After geometry validity check and before 2:1 check] : 128
Derefinement 2:1 balance converge in 2 sweeps
Count block's flag for derefinement [After geometry validity check and after 2:1 check] : 0
Info: process block count = 47552 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596548553887719 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0464e+05 | 380416 | 1 | 4.728e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9336386750095604 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 566.78293592 (s) [Godunov][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
cell count on line: 106
273 sodanalysis = model.make_analysis_sodtube(sod, (0, 1, 0), t_target, xref, 0.0, 1.0)
274 rho, v, P = sodanalysis.compute_L2_dist()
275 print(rho, v, P)
0.0004088843832742459 (0.0, 0.011368720539618843, 0.0) 0.0008861586757578389
280 glob_str = "_to_trash/sod_tube_amr_*.png"
281 ani = show_image_sequence(glob_str)
282
283 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
284 ani.save("_to_trash/sod_tube_amr.gif", writer=writer)
285
286 if shamrock.sys.world_rank() == 0:
287 plt.show()
Total running time of the script: (10 minutes 1.661 seconds)
Estimated memory usage: 2041 MB