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 cfg.set_second_order_interpolation_mode()
 58
 59
 60 cfg.set_slope_lim_minmod()
 61 cfg.set_face_time_interpolation(True)
 62
 63 err_min = 0.25
 64 err_max = 0.15
 65
 66 cfg.set_amr_mode_pseudo_gradient_based(error_min=err_min, error_max=err_max)
 67 model.set_solver_config(cfg)
 68
 69
 70 model.init_scheduler(int(1e7), 1)
 71 model.make_base_grid(
 72     (0, 0, 0), (cell_size, cell_size, cell_size), (base * multx, base * multy, base * multz)
 73 )
 74
 75
 76 def rho_map(rmin, rmax):
 77
 78     x, y, z = rmin
 79     if y < 0.5:
 80         return 1
 81     else:
 82         return 0.125
 83
 84
 85 etot_L = 1.0 / (gamma - 1)
 86 etot_R = 0.1 / (gamma - 1)
 87
 88
 89 def rhoetot_map(rmin, rmax):
 90     x, y, z = rmin
 91     if y < 0.5:
 92         return etot_L
 93     else:
 94         return etot_R
 95
 96
 97 def rhovel_map(rmin, rmax):
 98     return (0, 0, 0)
 99
100
101 model.set_field_value_lambda_f64("rho", rho_map)
102 model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
103 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  3.41 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     : 3.24 us    (61.1%)
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     : 811.00 ns  (0.1%)
   patch tree reduce : 781.00 ns  (0.1%)
   gen split merge   : 891.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.1%)
   LB compute        : 641.72 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
109 def convert_to_cell_coords(dic):
110
111     cmin = dic["cell_min"]
112     cmax = dic["cell_max"]
113
114     xmin = []
115     ymin = []
116     zmin = []
117     xmax = []
118     ymax = []
119     zmax = []
120
121     for i in range(len(cmin)):
122         m, M = cmin[i], cmax[i]
123
124         mx, my, mz = m
125         Mx, My, Mz = M
126
127         for j in range(8):
128             a, b = model.get_cell_coords(((mx, my, mz), (Mx, My, Mz)), j)
129
130             x, y, z = a
131             xmin.append(x)
132             ymin.append(y)
133             zmin.append(z)
134
135             x, y, z = b
136             xmax.append(x)
137             ymax.append(y)
138             zmax.append(z)
139
140     dic["xmin"] = np.array(xmin)
141     dic["ymin"] = np.array(ymin)
142     dic["zmin"] = np.array(zmin)
143     dic["xmax"] = np.array(xmax)
144     dic["ymax"] = np.array(ymax)
145     dic["zmax"] = np.array(zmax)
146
147     return dic
148
149
150 xref = 0.5
151 xrange = 0.5
152 sod = shamrock.phys.SodTube(gamma=gamma, rho_1=1, P_1=1, rho_5=0.125, P_5=0.1)
153
154
155 def analysis(i_snapshot):
156     global dX0
157     dic = convert_to_cell_coords(ctx.collect_data())
158     if i_snapshot == 0:
159         dX0 = dic["ymax"][0] - dic["ymin"][0]
160
161     t = model.get_time()
162
163     X = []
164     dX = []
165     rho = []
166     rhovelx = []
167     rhoetot = []
168
169     for i in range(len(dic["ymin"])):
170         X.append(dic["ymin"][i])
171         dX.append(dic["ymax"][i] - dic["ymin"][i])
172         rho.append(dic["rho"][i])
173         rhovelx.append(dic["rhovel"][i][1])
174         rhoetot.append(dic["rhoetot"][i])
175
176     X = np.array(X)
177     dX = np.array(dX)
178     rho = np.array(rho)
179     rhovelx = np.array(rhovelx)
180     rhoetot = np.array(rhoetot)
181
182     keep = (np.array(dic["xmin"]) < 0.01) & (np.array(dic["zmin"]) < 0.01)
183     print("cell count on line: ", keep.sum())
184     X = X[keep]
185     dX = dX[keep]
186     rho = rho[keep]
187     rhovelx = rhovelx[keep]
188     rhoetot = rhoetot[keep]
189
190     vx = rhovelx / rho
191
192     fig, axs = plt.subplots(nrows=1, ncols=1, figsize=(9, 6), dpi=125)
193
194     ax1 = plt.gca()
195     ax2 = ax1.twinx()
196
197     l_0 = np.log2(base * 2)
198
199     l = -np.log2(dX / dX0) + l_0
200
201     ax1.scatter(X, rho, rasterized=True, s=12 * np.ones(X.shape), label="rho")
202     ax1.scatter(X, vx, rasterized=True, s=12 * np.ones(X.shape), label="v")
203     ax1.scatter(
204         X,
205         (rhoetot - 0.5 * rho * (vx**2)) * (gamma - 1),
206         rasterized=True,
207         s=12 * np.ones(X.shape),
208         label="P",
209     )
210     idx = np.argsort(X)
211     ax2.plot(
212         X[idx],
213         l[idx],
214         color="purple",
215         marker="D",
216         linewidth=2.0,
217         ls="-.",
218         label="AMR level",
219         rasterized=True,
220     )
221     # plt.scatter(X,rhoetot, rasterized=True,label="rhoetot")
222     ax1.legend(loc=0)
223     ax2.legend(loc=0)
224     ax1.grid()
225
226     #### add analytical soluce
227     arr_x = np.linspace(xref - xrange, xref + xrange, 1000)
228
229     arr_rho = []
230     arr_P = []
231     arr_vx = []
232
233     for i in range(len(arr_x)):
234         x_ = arr_x[i] - xref
235
236         _rho, _vx, _P = sod.get_value(t, x_)
237         arr_rho.append(_rho)
238         arr_vx.append(_vx)
239         arr_P.append(_P)
240
241     ax1.plot(arr_x, arr_rho, ls="--", lw=2.0, alpha=0.7, color="black", label="analytic")
242     ax1.plot(arr_x, arr_vx, ls="--", lw=2.0, alpha=0.7, color="black")
243     ax1.plot(arr_x, arr_P, ls="--", lw=2.0, alpha=0.7, color="black")
244     ax2.set_ylabel("AMR level")
245     ax2.set_autoscale_on(False)
246     ax2.set_ylim(0.5, l_0 + max_amr_lev + 0.5)
247     ax1.set_xlim(-0.05, 1.05)
248     plt.title(f"Threshold = {err_max}, derefinement factor = {err_min}")
249     plt.savefig(f"_to_trash/sod_tube_amr_{i_snapshot:04d}.png")
250     plt.close()
255 if shamrock.sys.world_rank() == 0:
256     os.makedirs("_to_trash", exist_ok=True)
257
258 t_snapshot = np.linspace(0, 0.245, 120).tolist()
259
260 for i_snapshot, t_target in enumerate(t_snapshot):
261     model.evolve_until(t_target)
262     analysis(i_snapshot)
Info: time since start : 8.316459846 (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     : 10.96 us   (3.2%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (71.4%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
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    | 4.9338e+05 | 32768 |      1 | 6.642e-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     : 5.58 us    (2.7%)
   patch tree reduce : 1.61 us    (0.8%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 187.66 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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.001320553523013307                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8513e+05 | 39936 |      1 | 6.825e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.59551094340881 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 8.730532119000001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  24
amr::Godunov: t = 0.002058823529411765, dt = 0.001320553523013307
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     : 11.25 us   (3.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 267.42 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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]       :  2944

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  32

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  32

Will refine      2048    blocks


Info: process block count = 19328                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  224 new block count =  19104               [AMR Grid][rank=0]
Info: cfl dt = 0.0006602767615066535                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8946e+06 | 152832 |      1 | 8.067e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.93492577278361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003379377052425072, dt = 0.0006602767615066535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.4%)
   patch tree reduce : 1.38 us    (0.6%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.4%)
   LB compute        : 206.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005917959817155755                                     [amr::basegodunov][rank=0]
Info: Timestep perf 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 | 152832 |      1 | 1.820e-01 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.061161504581923 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004039653813931726, dt = 7.799324489180404e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.8%)
   patch tree reduce : 1.66 us    (0.8%)
   gen split merge   : 1.00 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 188.88 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005814604971244168                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6695e+05 | 152832 |      1 | 1.581e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.77643794867481 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 9.417986682 (s)                                          [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
amr::Godunov: t = 0.00411764705882353, dt = 0.0005814604971244168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.91 us   (3.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 267.90 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005258049103380767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9620e+05 | 152832 |      1 | 1.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.90511167815403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004699107555947947, dt = 0.0005258049103380767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.8%)
   patch tree reduce : 1.55 us    (0.8%)
   gen split merge   : 1.14 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.6%)
   LB compute        : 185.88 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004943037842579135                                     [amr::basegodunov][rank=0]
Info: Timestep 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.5239e+05 | 152832 |      1 | 1.605e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.795755499574918 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005224912466286024, dt = 0.0004943037842579135
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.6%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 199.14 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004734368490963676                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6792e+05 | 152832 |      1 | 1.579e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.269954181366774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005719216250543937, dt = 0.00045725433769135734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.5%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 204.67 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004588763411601025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9007e+05 | 152832 |      1 | 1.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.509659686159358 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 10.62983453 (s)                                          [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
amr::Godunov: t = 0.0061764705882352946, dt = 0.0004588763411601025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.53 us   (4.2%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 249.32 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004474232517735889                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4481e+05 | 152832 |      1 | 2.052e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.050568211076081 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006635346929395397, dt = 0.0004474232517735889
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.3%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 1.35 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 225.37 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (60.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000438485210298792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2288e+05 | 152832 |      1 | 1.857e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.67250211552967 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007082770181168986, dt = 0.000438485210298792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.6%)
   patch tree reduce : 1.45 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.6%)
   LB compute        : 192.36 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (62.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00043135531115909146                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8465e+05 | 152832 |      1 | 1.552e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.170126303980647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007521255391467778, dt = 0.00043135531115909146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.4%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 215.60 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042558474637361765                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6839e+05 | 152832 |      1 | 1.578e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.839505179291603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007952610702626869, dt = 0.0002826834150201907
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (2.2%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 1.39 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 219.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042235684757046523                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6142e+05 | 152832 |      1 | 1.590e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.401767425231076 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 12.023363425000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
amr::Godunov: t = 0.00823529411764706, dt = 0.00042235684757046523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.47 us   (4.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 560.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 249.41 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00041822568525838854                                    [amr::basegodunov][rank=0]
Info: Timestep 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.7436e+05 | 152832 |      1 | 1.569e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.693650094969243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657650965217525, dt = 0.00041822568525838854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.6%)
   patch tree reduce : 1.36 us    (0.7%)
   gen split merge   : 981.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 185.71 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (63.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004148592274875695                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6200e+05 | 152832 |      1 | 1.589e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.47703792980679 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009075876650475913, dt = 0.0004148592274875695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (2.3%)
   patch tree reduce : 1.49 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 210.07 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (59.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004121301455769911                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9290e+05 | 152832 |      1 | 1.539e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.702733965797133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009490735877963482, dt = 0.0004121301455769911
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.5%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 218.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (60.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004099264352467595                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8310e+05 | 152832 |      1 | 1.555e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.543804839138918 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009902866023540473, dt = 0.000391251623518352
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 219.41 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (58.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040823401361872523                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8368e+05 | 152832 |      1 | 1.554e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.065630572047906 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 13.335252844000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
amr::Godunov: t = 0.010294117647058825, dt = 0.00040823401361872523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.22 us   (4.2%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 245.11 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004068229949958348                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9398e+05 | 152832 |      1 | 1.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.634984793526906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01070235166067755, dt = 0.0004068229949958348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.7%)
   patch tree reduce : 1.62 us    (0.8%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.6%)
   LB compute        : 193.87 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (60.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004057265071374787                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8939e+05 | 152832 |      1 | 1.545e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.481114729996873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011109174655673385, dt = 0.0004057265071374787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.6%)
   patch tree reduce : 1.43 us    (0.7%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 200.76 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004048967509589252                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9755e+05 | 152832 |      1 | 1.532e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.533599177096576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514901162810863, dt = 0.0004048967509589252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.5%)
   patch tree reduce : 1.43 us    (0.6%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.6%)
   LB compute        : 205.21 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (58.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040429347167509716                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9381e+05 | 152832 |      1 | 1.538e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.478400493050179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011919797913769788, dt = 0.00040429347167509716
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.6%)
   patch tree reduce : 1.67 us    (0.8%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.6%)
   LB compute        : 198.95 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038823192788411                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0062e+06 | 152832 |      1 | 1.519e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.582202547168096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012324091385444885, dt = 2.8849791025704202e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.4%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 205.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (58.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038580166478702                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1564e+05 | 152832 |      1 | 2.136e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48632478008246843 (tsim/hr)                          [amr::RAMSES][rank=0]
Info: time since start : 14.877692558000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
amr::Godunov: t = 0.012352941176470589, dt = 0.0004038580166478702
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.39 us   (4.0%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 257.81 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040014902329657624                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4762e+05 | 152832 |      1 | 2.044e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.112112772392521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01275679919311846, dt = 0.00040014902329657624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.7%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 203.79 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003961529567668873                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7691e+05 | 152832 |      1 | 1.564e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.207950637197852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013156948216415035, dt = 0.0003961529567668873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.6%)
   patch tree reduce : 1.63 us    (0.8%)
   gen split merge   : 1.17 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.5%)
   LB compute        : 180.02 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003928116628632412                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8805e+05 | 152832 |      1 | 1.547e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.220011043454805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013553101173181922, dt = 0.0003928116628632412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.8%)
   patch tree reduce : 1.51 us    (0.8%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.7%)
   LB compute        : 182.53 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (60.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00039001227933022976                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9565e+05 | 152832 |      1 | 1.535e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.212576538947168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013945912836045163, dt = 0.00039001227933022976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.7%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 204.65 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (61.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038767551199431097                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8942e+05 | 152832 |      1 | 1.545e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.089648422425151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014335925115375393, dt = 7.583959050696046e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.6%)
   patch tree reduce : 1.71 us    (0.8%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.6%)
   LB compute        : 200.52 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (65.9%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      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 = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038728000811695                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4102e+06 | 228992 |      1 | 1.624e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6814044023902204 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 16.395865116 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.014411764705882353, dt = 0.00038728000811695
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     : 11.72 us   (3.9%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 277.14 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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]       :  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.00038538012089489604                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9777e+05 | 228992 |      1 | 2.295e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.074897906164073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014799044713999303, dt = 0.00038538012089489604
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.56 us    (2.4%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 214.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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.0003838088210924787                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0701e+06 | 228992 |      1 | 2.140e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.483187212680831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015184424834894199, dt = 0.0003838088210924787
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.36 us    (2.1%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 231.21 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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]       :  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.0003824995505518537                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0418e+06 | 228992 |      1 | 2.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.28622753420905 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015568233655986677, dt = 0.0003824995505518537
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.22 us    (1.8%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 266.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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]       :  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.0003813893925858331                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0556e+06 | 228992 |      1 | 2.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.3474007401994035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595073320653853, dt = 0.0003813893925858331
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.44 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 247.58 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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]       :  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.0003804605432723328                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0519e+06 | 228992 |      1 | 2.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.307057177031356 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016332122599124366, dt = 0.0001384656361697531
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.59 us    (2.2%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 233.34 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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.00038017442610720887                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0644e+06 | 228992 |      1 | 2.151e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.317040112484894 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 18.402567689 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.01647058823529412, dt = 0.00038017442610720887
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     : 11.75 us   (4.3%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 248.90 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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.0003794657495991848                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0568e+06 | 228992 |      1 | 2.167e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.316028150847819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016850762661401328, dt = 0.0003794657495991848
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.73 us    (2.4%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 218.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.000378903509120108                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0628e+06 | 228992 |      1 | 2.155e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.340115397995478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01723022841100051, dt = 0.000378903509120108
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.47 us    (2.4%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 206.25 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (60.1%)
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.0003784752520950754                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0926e+06 | 228992 |      1 | 2.096e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.508435400449502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01760913192012062, dt = 0.0003784752520950754
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.84 us    (2.4%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 228.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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.0003781699872477832                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0721e+06 | 228992 |      1 | 2.136e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.379160348171511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987607172215696, dt = 0.0003781699872477832
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.72 us    (2.4%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 214.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (60.8%)
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.0003779777770734229                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0642e+06 | 228992 |      1 | 2.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.326897181313606 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01836577715946348, dt = 0.0001636346052424041
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.64 us    (2.5%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 210.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (62.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.00037793431346876805                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0446e+06 | 228992 |      1 | 2.192e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6872338919793233 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 20.396810328 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.018529411764705885, dt = 0.00037793431346876805
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     : 11.09 us   (4.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 520.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 248.98 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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.0003778891497430957                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0626e+06 | 228992 |      1 | 2.155e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.313737655746161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018907346078174653, dt = 0.0003778891497430957
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.93 us    (2.6%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 209.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  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.00037793893740566                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0548e+06 | 228992 |      1 | 2.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.266611306456753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01928523522791775, dt = 0.00037793893740566
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.40 us    (2.0%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 250.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.0003780766586860245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9545e+05 | 228992 |      1 | 2.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.726239428707557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01966317416532341, dt = 0.0003780766586860245
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.42 us    (1.9%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  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.00037829546160206886                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0424e+06 | 228992 |      1 | 2.197e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.195876773874455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020041250824009434, dt = 0.00037829546160206886
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.63 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 249.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (62.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.00037846477090351085                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0650e+06 | 228992 |      1 | 2.150e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.333727660997572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020419546285611503, dt = 0.00016868900850614682
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.84 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 259.81 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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]       :  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.0003779767939115298                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3281e+05 | 228992 |      1 | 2.750e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.208582465882933 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 22.531112673000003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.02058823529411765, dt = 0.0003779767939115298
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     : 10.89 us   (3.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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]       :  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.0003770008956055659                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7764e+05 | 228992 |      1 | 2.609e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.2150845005612165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02096621208802918, dt = 0.0003770008956055659
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.65 us    (2.3%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 223.42 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (60.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.00037621075575801105                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0780e+06 | 228992 |      1 | 2.124e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.389161951642544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021343212983634743, dt = 0.00037621075575801105
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.79 us    (2.3%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 231.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.00037558820322554246                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0542e+06 | 228992 |      1 | 2.172e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.234756751928964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021719423739392753, dt = 0.00037558820322554246
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.37 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 239.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (61.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.00037511720264416063                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0558e+06 | 228992 |      1 | 2.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.234035405800348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022095011942618297, dt = 0.00037511720264416063
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.14 us    (2.2%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 211.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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.00037478348935839024                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0763e+06 | 228992 |      1 | 2.127e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.3474730911228425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022470129145262457, dt = 0.00017692967826695577
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.32 us    (2.0%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 244.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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.00037467807705051325                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0698e+06 | 228992 |      1 | 2.140e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9757734481448628 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 24.598022272 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.022647058823529412, dt = 0.00037467807705051325
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     : 11.05 us   (3.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 269.62 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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]       :  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.0003745228813039761                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0530e+06 | 228992 |      1 | 2.175e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.202622532147615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023021736900579924, dt = 0.0003745228813039761
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.47 us    (2.4%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 210.56 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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]       :  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.0003744760326654997                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0682e+06 | 228992 |      1 | 2.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.289705469503444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0233962597818839, dt = 0.0003744760326654997
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.54 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 231.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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.00037452780994717084                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0593e+06 | 228992 |      1 | 2.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.236519285439552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0237707358145494, dt = 0.00037452780994717084
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.44 us    (2.4%)
   patch tree reduce : 1.52 us    (0.7%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 206.97 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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]       :  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.00037351765953667877                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1692e+05 | 228992 |      1 | 2.497e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.398811988420023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024145263624496573, dt = 0.00037351765953667877
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.57 us    (2.1%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 251.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  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.0003720049735530872                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0605e+06 | 228992 |      1 | 2.159e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.227283366046453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02451878128403325, dt = 0.00018710106890792652
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.44 us    (2.0%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 248.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  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.0003713492730466829                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0675e+06 | 228992 |      1 | 2.145e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1401028004769884 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 26.83166735 (s)                                          [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.024705882352941178, dt = 0.0003713492730466829
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     : 11.51 us   (4.3%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 244.40 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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]       :  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.0003701958052602592                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0693e+06 | 228992 |      1 | 2.142e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.242608125594886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02507723162598786, dt = 0.0003701958052602592
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.67 us    (2.5%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.7%)
   LB compute        : 211.05 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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.00036925674310571665                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0710e+06 | 228992 |      1 | 2.138e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.233250009598352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02544742743124812, dt = 0.00036925674310571665
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.90 us    (2.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 246.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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.00036851989468020296                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6178e+05 | 228992 |      1 | 2.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.5832143441752695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025816684174353836, dt = 0.00036851989468020296
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    (2.3%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 237.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (62.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.0003679625473968007                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0547e+06 | 228992 |      1 | 2.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.110453030898038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02618520406903404, dt = 0.0003679625473968007
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.65 us    (2.2%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 240.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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.00036756488234564275                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0663e+06 | 228992 |      1 | 2.148e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.168203076965555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02655316661643084, dt = 0.00021153926592210395
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.45 us    (2.4%)
   patch tree reduce : 1.71 us    (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.4%)
   LB compute        : 206.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (62.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.000367409993885466                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0620e+06 | 228992 |      1 | 2.156e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5317631723673597 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 28.863902217000003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.026764705882352944, dt = 0.000367409993885466
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     : 11.01 us   (4.1%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 243.21 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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]       :  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.00036722891809648473                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0728e+06 | 228992 |      1 | 2.135e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.1966509320206224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02713211587623841, dt = 0.00036722891809648473
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.21 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 245.35 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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.0003671669138920726                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0576e+06 | 228992 |      1 | 2.165e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.10574778125395 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027499344794334895, dt = 0.0003671669138920726
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.68 us    (2.4%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.6%)
   LB compute        : 213.44 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (60.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.00036721142173056154                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0590e+06 | 228992 |      1 | 2.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.112922030080991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027866511708226967, dt = 0.00036721142173056154
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.16 us    (2.4%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 232.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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]       :  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.00036735130859794676                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0627e+06 | 228992 |      1 | 2.155e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.134793812820096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02823372312995753, dt = 0.00036735130859794676
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.54 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 231.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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]       :  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.0003675767262952544                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0561e+06 | 228992 |      1 | 2.168e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.099015385819542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028601074438555477, dt = 0.00022245497320922888
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.41 us    (2.1%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 241.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.0003677568884406673                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0688e+06 | 228992 |      1 | 2.142e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.738013745219164 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 30.878448755 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.028823529411764706, dt = 0.0003677568884406673
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     : 11.00 us   (3.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 263.57 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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]       :  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.0003669760006129422                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0774e+06 | 228992 |      1 | 2.126e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.228736253671592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029191286300205375, dt = 0.0003669760006129422
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.48 us    (2.4%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 213.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (63.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.00036584522490855                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0729e+06 | 228992 |      1 | 2.134e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.189744561446808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029558262300818317, dt = 0.00036584522490855
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.47 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 248.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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.00036491468097447476                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0805e+06 | 228992 |      1 | 2.119e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.214462303486723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029924107525726867, dt = 0.00036491468097447476
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.45 us    (2.0%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 255.86 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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.00036416223966992146                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0211e+06 | 228992 |      1 | 2.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.857691606541325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030289022206701342, dt = 0.00036416223966992146
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.58 us    (2.4%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 214.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (66.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.00036356739706859043                                    [amr::basegodunov][rank=0]
Info: Timestep 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.3790e+05 | 228992 |      1 | 2.442e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.369495063304525 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030653184446371263, dt = 0.00022916849480520904
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.18 us    (2.2%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 213.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (61.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.0003632721989537262                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0682e+06 | 228992 |      1 | 2.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.848310553827516 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 32.929401004 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
amr::Godunov: t = 0.030882352941176472, dt = 0.0003632721989537262
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     : 11.10 us   (4.0%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 570.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 255.11 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  6096

 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.0003629024891467764                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0591e+06 | 228992 |      1 | 2.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.048281578023645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031245625140130198, dt = 0.0003629024891467764
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.47 us    (1.9%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 264.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (60.1%)
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]        :  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.00036265560449664136                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0740e+06 | 228992 |      1 | 2.132e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.127374864670807 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031608527629276975, dt = 0.00036265560449664136
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.33 us    (2.4%)
   patch tree reduce : 1.67 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 204.14 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (62.4%)
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]        :  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.0003625182065838522                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2783e+06 | 286336 |      1 | 2.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.828496787273097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03197118323377362, dt = 0.0003625182065838522
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     : 5.45 us    (2.3%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.4%)
   LB compute        : 219.87 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (61.1%)
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.0003624786158560713                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0129e+05 | 286336 |      1 | 3.177e-01 | 0.0% |   1.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.107900041869417 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03233370144035747, dt = 0.0003624786158560713
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     : 5.35 us    (2.2%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 219.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (62.9%)
Refinement 2:1 balance converged in  4  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

Will refine      1360    blocks


Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036252661689178283                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1622e+06 | 362496 |      1 | 3.119e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.183844728387729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032696180056213546, dt = 0.0002449964143746916
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     : 5.46 us    (2.4%)
   patch tree reduce : 1.82 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.4%)
   LB compute        : 211.50 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (60.2%)
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.00036260822923584395                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1201e+06 | 362496 |      1 | 3.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.72524639159935 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 35.267791344 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.03294117647058824, dt = 0.00036260822923584395
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     : 11.22 us   (4.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 239.80 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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.0003627831039360763                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0268e+06 | 362496 |      1 | 3.530e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6977887329460146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033303784699824084, dt = 0.0003627831039360763
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     : 5.75 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 255.81 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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.00036302382236061843                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1207e+06 | 362496 |      1 | 3.235e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.037708746616203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03366656780376016, dt = 0.00036302382236061843
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     : 5.80 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 256.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  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.0003631528911313689                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0587e+06 | 362496 |      1 | 3.424e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.816949113702517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03402959162612078, dt = 0.0003631528911313689
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     : 5.69 us    (1.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 273.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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.00036217955535274585                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1144e+06 | 362496 |      1 | 3.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.019255874498491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439274451725215, dt = 0.00036217955535274585
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     : 5.73 us    (2.3%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 228.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (61.2%)
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.0003613772188838139                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1136e+06 | 362496 |      1 | 3.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.005597816579835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034754924072604894, dt = 0.00024507592739510947
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     : 5.80 us    (2.3%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 230.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.6%)
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.0003609250444292125                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1010e+06 | 362496 |      1 | 3.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.679765375646997 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 38.331861279 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.035, dt = 0.0003609250444292125
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     : 10.94 us   (3.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 264.87 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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]       :  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.00036036251330642615                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1210e+06 | 362496 |      1 | 3.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.01826904590782 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03536092504442922, dt = 0.00036036251330642615
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     : 5.54 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 217.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.5%)
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.000359924042759246                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1146e+06 | 362496 |      1 | 3.252e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9888542011330625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03572128755773565, dt = 0.000359924042759246
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     : 5.64 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 263.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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.00035959727622743087                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1110e+06 | 362496 |      1 | 3.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.971108094189031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03608121160049489, dt = 0.00035959727622743087
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     : 5.53 us    (2.2%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 237.84 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (62.4%)
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.0003593710868331608                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1028e+06 | 362496 |      1 | 3.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9384702890560845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036440808876722325, dt = 0.0003593710868331608
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     : 5.71 us    (2.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 210.74 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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]       :  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.0003592355057290549                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1160e+06 | 362496 |      1 | 3.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9829861131146105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03680017996355549, dt = 0.00025864356585628134
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     : 5.89 us    (2.6%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.6%)
   LB compute        : 208.73 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (58.9%)
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.0003591925831532022                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1119e+06 | 362496 |      1 | 3.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.855980907346403 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 41.332934768 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.03705882352941177, dt = 0.0003591925831532022
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     : 11.07 us   (3.9%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 256.33 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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]       :  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.00035919627019247315                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1188e+06 | 362496 |      1 | 3.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9910298226396352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741801611256497, dt = 0.00035919627019247315
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     : 5.59 us    (2.2%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 234.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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]       :  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.00035927293279724114                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1165e+06 | 362496 |      1 | 3.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.982669101081914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03777721238275744, dt = 0.00035927293279724114
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     : 5.45 us    (2.3%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 221.46 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (63.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.0003594131336830513                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1262e+06 | 362496 |      1 | 3.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.018290290145187 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038136485315554684, dt = 0.0003594131336830513
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     : 5.47 us    (2.3%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.7%)
   LB compute        : 215.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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.00035960899562001387                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0313e+06 | 362496 |      1 | 3.515e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.681113995018844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03849589844923774, dt = 0.00035960899562001387
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     : 5.34 us    (2.3%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.5%)
   LB compute        : 214.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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]       :  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.00035985391860293855                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1261e+06 | 362496 |      1 | 3.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.021533653939351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03885550744485775, dt = 0.0002621396139657825
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     : 5.71 us    (2.2%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 241.27 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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.000360062065281513                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1251e+06 | 362496 |      1 | 3.222e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9290442961393865 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 44.346314503 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.039117647058823535, dt = 0.000360062065281513
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     : 11.17 us   (4.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 711.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 247.17 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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.000359325379476648                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1432e+06 | 362496 |      1 | 3.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.087915369651727 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039477709124105045, dt = 0.000359325379476648
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     : 5.33 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 220.96 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.000358708982068319                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1342e+06 | 362496 |      1 | 3.196e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.047372407963872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03983703450358169, dt = 0.000358708982068319
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     : 5.61 us    (2.0%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 255.77 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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.0003582144379727608                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1387e+06 | 362496 |      1 | 3.183e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.056654038865274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04019574348565001, dt = 0.0003582144379727608
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     : 5.55 us    (2.1%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 240.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.7%)
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.00035782178179984055                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0127e+06 | 362496 |      1 | 3.579e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.602712123133103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04055395792362277, dt = 0.00035782178179984055
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     : 5.58 us    (2.2%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 240.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (60.3%)
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.00035751978565284155                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1312e+06 | 362496 |      1 | 3.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.019640326060914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04091177970542261, dt = 0.000264690882812689
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     : 5.37 us    (2.2%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 226.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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]       :  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.000357352363872593                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0267e+06 | 362496 |      1 | 3.531e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.698810377679507 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 47.372609446000006 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.0411764705882353, dt = 0.000357352363872593
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     : 11.08 us   (3.8%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 251.31 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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]       :  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.00035718602269055197                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1135e+06 | 362496 |      1 | 3.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9517474509463395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04153382295210789, dt = 0.00035718602269055197
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     : 5.79 us    (2.3%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 233.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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.0003570870782069911                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1152e+06 | 362496 |      1 | 3.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9560246121848834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041891008974798444, dt = 0.0003570870782069911
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     : 5.78 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 277.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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.00035704980128854194                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1173e+06 | 362496 |      1 | 3.244e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.962181396899876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04224809605300543, dt = 0.00035704980128854194
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     : 5.41 us    (2.0%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 255.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.000357071293113952                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1191e+06 | 362496 |      1 | 3.239e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9682262168629543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04260514585429397, dt = 0.000357071293113952
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     : 5.40 us    (2.1%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 242.08 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (63.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.00035714486768929324                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1256e+06 | 362496 |      1 | 3.220e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.991575294321694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04296221714740792, dt = 0.00027307697023913613
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     : 5.56 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 264.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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]       :  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.0003572343339700586                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0988e+06 | 362496 |      1 | 3.299e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.97999388358263 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 50.379196883000006 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.04323529411764706, dt = 0.0003572343339700586
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     : 11.15 us   (3.9%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 259.90 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (62.4%)
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.00035738514626987864                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1172e+06 | 362496 |      1 | 3.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9635996163273526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04359252845161712, dt = 0.00035738514626987864
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     : 5.45 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 240.51 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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]       :  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.00035757343944916616                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1223e+06 | 362496 |      1 | 3.230e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9831461142845286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043949913597887, dt = 0.00035757343944916616
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     : 5.64 us    (2.1%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 247.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (62.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.00035779546443242145                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1225e+06 | 362496 |      1 | 3.229e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9862138215794283 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04430748703733616, dt = 0.00035779546443242145
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     : 5.71 us    (2.2%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 244.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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.00035742846672194096                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1374e+06 | 362496 |      1 | 3.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.041516661534383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.044665282501768586, dt = 0.00035742846672194096
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     : 5.65 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 253.07 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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]       :  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.0003569581106920128                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1228e+06 | 362496 |      1 | 3.228e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.985581672380371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.045022710968490524, dt = 0.0002714066785683006
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     : 5.50 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 221.57 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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]       :  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.0003566669170555168                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0872e+06 | 362496 |      1 | 3.334e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.930460741215393 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 53.387559729 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.045294117647058825, dt = 0.0003566669170555168
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     : 10.58 us   (3.7%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 260.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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.0003563525170340692                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1269e+06 | 362496 |      1 | 3.217e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9916582527394384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04565078456411434, dt = 0.0003563525170340692
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.3%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 242.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (60.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]        :  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.00035610905141217927                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1212e+06 | 362496 |      1 | 3.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9678001381870964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04600713708114841, dt = 0.00035610905141217927
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     : 5.47 us    (2.0%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 250.72 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (61.1%)
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]        :  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.00035592773113960277                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1215e+06 | 362496 |      1 | 3.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.966365389205847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04636324613256059, dt = 0.00035592773113960277
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     : 5.44 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 251.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.8%)
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]        :  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.00035580211737116103                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1273e+06 | 362496 |      1 | 3.216e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.984859968628623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0467191738637002, dt = 0.00035580211737116103
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     : 5.73 us    (2.2%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 244.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  11520

 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.00035572682810737873                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1336e+06 | 362496 |      1 | 3.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.005650766429622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04707497598107136, dt = 0.0002779651953992296
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     : 5.66 us    (2.5%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.6%)
   LB compute        : 208.71 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  11520

 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.000355702555798484                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1166e+06 | 362496 |      1 | 3.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0823353408833696 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 56.386957739 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
amr::Godunov: t = 0.04735294117647059, dt = 0.000355702555798484
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     : 11.14 us   (4.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 256.70 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  11520

 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.0003557071198519391                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1001e+06 | 362496 |      1 | 3.295e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.886263331952669 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047708643732269074, dt = 0.0003557071198519391
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     : 5.52 us    (2.1%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 238.22 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  11520

 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.00035575182903453906                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1189e+06 | 362496 |      1 | 3.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.952459637455852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04806435085212101, dt = 0.00035575182903453906
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     : 5.99 us    (2.2%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 249.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (63.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.000355832047848302                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1090e+06 | 362496 |      1 | 3.269e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9181574406822035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04842010268115555, dt = 0.000355832047848302
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     : 5.72 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 241.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  14592

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1184

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 = 45312                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  38144              [AMR Grid][rank=0]
Info: cfl dt = 0.0003579536422148582                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1550e+05 | 305152 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.84318136190439 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04877593472900385, dt = 0.0003579536422148582
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 238.13 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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]       :  7424

 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 = 38144                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733039708454254                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1971e+05 | 305152 |      1 | 3.318e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8838689840197227 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04913388837121871, dt = 0.0002778763346636473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 258.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (61.8%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7424

 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      1280    blocks


Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569387464808322                                     [amr::basegodunov][rank=0]
Info: Timestep 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.3053e+06 | 376832 |      1 | 2.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.465235258896898 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 59.382133098000004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.049411764705882356, dt = 0.0003569387464808322
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     : 10.54 us   (3.8%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 550.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 255.39 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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.0003565234297425694                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0320e+06 | 376832 |      1 | 3.652e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5189619617581194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049768703452363186, dt = 0.0003565234297425694
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.13 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 231.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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]       :  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.0003561999368741071                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1260e+06 | 376832 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8352703679200757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05012522688210576, dt = 0.0003561999368741071
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.33 us    (2.0%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 242.69 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.000355951912251442                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1155e+06 | 376832 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7959135356234217 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.050481426818979866, dt = 0.000355951912251442
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.38 us    (2.3%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 1.20 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 214.33 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.0003557692268374157                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1198e+06 | 376832 |      1 | 3.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8079403504013496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05083737873123131, dt = 0.0003557692268374157
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.67 us    (2.1%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 253.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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.00035564336408822127                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1120e+06 | 376832 |      1 | 3.389e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.779536443393791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05119314795806872, dt = 0.0002774402772253992
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.71 us    (2.4%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 1.17 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 217.15 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (57.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.0003555823778019082                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1014e+06 | 376832 |      1 | 3.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9191895633192075 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 62.68188661000001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.05147058823529412, dt = 0.0003555823778019082
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     : 11.02 us   (3.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 259.33 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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.0003555404805147335                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1068e+06 | 376832 |      1 | 3.405e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.759883419059805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05182617061309603, dt = 0.0003555404805147335
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.55 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 256.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (62.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.00035553831565259485                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1105e+06 | 376832 |      1 | 3.393e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.772027804068032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052181711093610764, dt = 0.00035553831565259485
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.60 us    (2.0%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 262.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (63.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.00035557135862183                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0215e+06 | 376832 |      1 | 3.689e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4697139246410535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05253724940926336, dt = 0.00035557135862183
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.37 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 290.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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.00035563581671547203                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1125e+06 | 376832 |      1 | 3.387e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7791525701961906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05289282076788519, dt = 0.00035563581671547203
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.51 us    (2.3%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 221.19 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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.0003557284928642747                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0603e+06 | 376832 |      1 | 3.554e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.602420152188665 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.053248456584600666, dt = 0.0002809551801052218
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.51 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 250.13 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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]       :  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.0003558208535281932                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0788e+06 | 376832 |      1 | 3.493e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.895501447789297 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 65.863259118 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.05352941176470589, dt = 0.0003558208535281932
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     : 11.20 us   (3.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 262.68 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  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.0003559571643612555                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1196e+06 | 376832 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.80596188473141 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05388523261823408, dt = 0.0003559571643612555
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.25 us    (1.8%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.22 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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.00035611478224853275                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1037e+06 | 376832 |      1 | 3.414e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7533160894544406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05424118978259534, dt = 0.00035611478224853275
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.96 us    (2.2%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 255.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (58.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.0003562917795998481                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1020e+06 | 376832 |      1 | 3.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.749020662069048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05459730456484387, dt = 0.0003562917795998481
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.74 us    (2.2%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 244.27 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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.0003561371899162657                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0126e+06 | 376832 |      1 | 3.722e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4465844368715652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05495359634444372, dt = 0.0003561371899162657
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    (2.5%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 239.05 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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.0003558774188144993                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1140e+06 | 376832 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.790067790120199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05530973353435998, dt = 0.0002785017597576739
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.97 us    (2.4%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 231.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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]       :  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.0003557156166584369                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1182e+06 | 376832 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.975235299467814 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 69.01613888300001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.055588235294117654, dt = 0.0003557156166584369
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     : 11.00 us   (4.0%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 521.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 250.14 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  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.000355550612442237                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0041e+06 | 376832 |      1 | 3.753e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.412270770526612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05594395091077609, dt = 0.000355550612442237
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.73 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 224.94 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.000355426138098546                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1153e+06 | 376832 |      1 | 3.379e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7884927231071956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05629950152321833, dt = 0.000355426138098546
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.87 us    (2.6%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 208.74 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (48.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.0003553378625112624                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1100e+06 | 376832 |      1 | 3.395e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.768867290492963 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05665492766131688, dt = 0.0003553378625112624
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.64 us    (2.4%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 212.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (62.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.0003552820157923512                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1186e+06 | 376832 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797224573644512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05701026552382814, dt = 0.0003552820157923512
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.78 us    (2.4%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 862.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 219.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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.0003552552620000799                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1271e+06 | 376832 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.825422152663504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05736554753962049, dt = 0.00028151128390892233
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.70 us    (2.5%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 209.43 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (63.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.00035525375342365775                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1192e+06 | 376832 |      1 | 3.367e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.009951721234805 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 72.18533317100001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.05764705882352941, dt = 0.00035525375342365775
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     : 11.16 us   (3.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 296.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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]       :  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.0003552723273509568                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1026e+06 | 376832 |      1 | 3.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7420222307805626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05800231257695307, dt = 0.0003552723273509568
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.67 us    (2.0%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 267.64 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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.0003553129659124039                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1048e+06 | 376832 |      1 | 3.411e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7495612182762956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058357584904304025, dt = 0.0003553129659124039
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.58 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 250.34 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (55.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.00035537315733939984                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1079e+06 | 376832 |      1 | 3.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.760828871644367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05871289787021643, dt = 0.00035537315733939984
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.89 us    (2.2%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.6%)
   LB compute        : 241.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.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.0003554507906732302                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9708e+05 | 376832 |      1 | 3.779e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3850842321645063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.059068271027555824, dt = 0.0003554507906732302
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.4%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 245.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (62.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.00035554409162120206                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1106e+06 | 376832 |      1 | 3.393e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.771180484357485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05942372181822905, dt = 0.0002821605347121253
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.87 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 264.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (61.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.00035562874597363934                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1086e+06 | 376832 |      1 | 3.399e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.988250867634317 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 75.39565697 (s)                                          [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.05970588235294118, dt = 0.00035562874597363934
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     : 11.21 us   (4.1%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 570.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 249.39 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.00035574649711552213                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0501e+06 | 376832 |      1 | 3.588e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.567804272464504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06006151109891482, dt = 0.00035574649711552213
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.52 us    (2.3%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 221.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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]       :  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.0003557420683277161                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1188e+06 | 376832 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.802235406932424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06041725759603034, dt = 0.0003557420683277161
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    (2.6%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 210.30 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.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.0003555432610434749                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1189e+06 | 376832 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8025473115331057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060772999664358056, dt = 0.0003555432610434749
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.72 us    (2.5%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 211.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (61.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.0003553833395717578                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0806e+06 | 376832 |      1 | 3.487e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.670459783358731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061128542925401534, dt = 0.0003553833395717578
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.04 us    (2.4%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 230.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (62.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.0003552564873286188                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1063e+06 | 376832 |      1 | 3.406e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.755914832436238 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061483926264973295, dt = 0.00028077961737964924
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.4%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 251.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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.00035517727019679065                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1272e+06 | 376832 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0234628439078204 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 78.57100158 (s)                                          [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.061764705882352944, dt = 0.00035517727019679065
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.07 us   (4.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 269.01 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.00035509839632940927                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0358e+06 | 376832 |      1 | 3.638e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5144954252411034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06211988315254974, dt = 0.00035509839632940927
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.74 us    (2.3%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 229.33 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.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.00035504238693412414                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1020e+06 | 376832 |      1 | 3.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.738338283833523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06247498154887915, dt = 0.00035504238693412414
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.57 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 246.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.000355006776608572                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1136e+06 | 376832 |      1 | 3.384e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7771220556891576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06283002393581327, dt = 0.000355006776608572
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.94 us    (2.6%)
   patch tree reduce : 1.71 us    (0.8%)
   gen split merge   : 1.27 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 205.91 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.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.0003549895663032612                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9833e+05 | 376832 |      1 | 3.775e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3858223245519743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06318503071242185, dt = 0.0003549895663032612
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.38 us    (2.0%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 246.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (62.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.00035498906138086236                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0874e+06 | 376832 |      1 | 3.466e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6876362523296278 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0635400202787251, dt = 0.00028350913303960834
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.82 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 226.80 us  (76.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (62.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.0003550001795780975                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0965e+06 | 376832 |      1 | 3.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.969920170537268 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 81.814195424 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.06382352941176471, dt = 0.0003550001795780975
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     : 10.93 us   (3.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 521.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 278.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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]       :  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.0003550260408580008                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1223e+06 | 376832 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.806348599903285 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0641785295913428, dt = 0.0003550260408580008
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.96 us    (2.1%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (61.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.0003550649079811531                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1313e+06 | 376832 |      1 | 3.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8371748164237256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06453355563220081, dt = 0.0003550649079811531
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    (2.4%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 240.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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]       :  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.0003551157499842869                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1187e+06 | 376832 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7945433651467355 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06488862054018196, dt = 0.0003551157499842869
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.82 us    (2.5%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 212.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.00035517766192499873                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9635e+05 | 376832 |      1 | 3.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.380150744302122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06524373629016625, dt = 0.00035517766192499873
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    (2.5%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.6%)
   LB compute        : 227.94 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (60.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.00035524985414255955                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1302e+06 | 376832 |      1 | 3.334e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.834945512482883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06559891395209125, dt = 0.00028343898908522736
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.89 us    (2.3%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 231.23 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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.0003553146385924044                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0692e+06 | 376832 |      1 | 3.524e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8952503041059274 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 85.019183459 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.06588235294117648, dt = 0.0003553146385924044
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     : 11.70 us   (4.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 252.04 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
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.000361522010974903                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2190e+05 | 319488 |      1 | 3.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.290617782305428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623766757976889, dt = 0.000361522010974903
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     : 5.18 us    (2.0%)
   patch tree reduce : 1.34 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.4%)
   LB compute        : 242.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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

Info: process block count = 39936                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036062518220910696                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0906e+06 | 319488 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.442691187428163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06659918959074379, dt = 0.00036062518220910696
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     : 5.54 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.6%)
   LB compute        : 235.28 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (59.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]        :  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.0003598474685913763                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2606e+06 | 376832 |      1 | 2.989e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.343026130739057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0669598147729529, dt = 0.0003598474685913763
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.54 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 218.32 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.00035917314179919994                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1316e+06 | 376832 |      1 | 3.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.890084777001241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06731966224154427, dt = 0.00035917314179919994
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.37 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 232.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.00035858870657831004                                    [amr::basegodunov][rank=0]
Info: Timestep 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.4094e+05 | 376832 |      1 | 4.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.228652284944996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06767883538334347, dt = 0.00026234108724476624
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.47 us    (2.1%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 236.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.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.00035821571533415405                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1246e+06 | 376832 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8184380902820756 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 88.22325190100001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.06794117647058824, dt = 0.00035821571533415405
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     : 11.92 us   (4.4%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 245.80 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]        :  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.0003577602192623078                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1172e+06 | 376832 |      1 | 3.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8232551375885713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06829939218592239, dt = 0.0003577602192623078
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.82 us    (2.0%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 270.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (60.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.0003573670660164082                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1169e+06 | 376832 |      1 | 3.374e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.817319961151492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06865715240518469, dt = 0.0003573670660164082
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.94 us    (2.3%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 242.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (61.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.00035702870236839723                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1043e+06 | 376832 |      1 | 3.413e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.769972312099936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0690145194712011, dt = 0.00035702870236839723
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.69 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 259.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  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.00035673862054576364                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0639e+06 | 376832 |      1 | 3.542e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6287352846702 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0693715481735695, dt = 0.00035673862054576364
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.38 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 230.72 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (63.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.0003564911999694363                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0579e+06 | 376832 |      1 | 3.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.605362095316179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06972828679411526, dt = 0.00027171320588474657
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    (2.2%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 247.19 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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.00035633025146976816                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1090e+06 | 376832 |      1 | 3.398e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8786360471679715 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 91.496129134 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.07, dt = 0.00035633025146976816
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     : 11.05 us   (3.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 260.35 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  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.0003561463783635791                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1100e+06 | 376832 |      1 | 3.395e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.778760656032002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07035633025146977, dt = 0.0003561463783635791
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.97 us    (2.2%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 253.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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]       :  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.0003559932845139491                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1144e+06 | 376832 |      1 | 3.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7915809843637573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07071247662983335, dt = 0.0003559932845139491
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.49 us    (1.9%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 263.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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.00035586677905737177                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1155e+06 | 376832 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.793865803770356 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0710684699143473, dt = 0.00035586677905737177
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.58 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 251.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.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.00035576126833240795                                    [amr::basegodunov][rank=0]
Info: Timestep 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.3670e+05 | 376832 |      1 | 4.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1845261385526555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07142433669340467, dt = 0.00035576126833240795
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.44 us    (2.3%)
   patch tree reduce : 1.54 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 215.01 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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.00035567456441488955                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1203e+06 | 376832 |      1 | 3.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8075083058969046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07178009796173708, dt = 0.0002787255676746925
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.73 us    (2.5%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 214.81 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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.0003556192504870765                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0521e+06 | 376832 |      1 | 3.582e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8013974501231895 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 94.79879964000001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.07205882352941177, dt = 0.0003556192504870765
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     : 11.49 us   (4.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 248.52 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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]       :  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.000355561446939343                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5859e+05 | 376832 |      1 | 3.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2566494607400536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07241444277989885, dt = 0.000355561446939343
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.68 us    (2.3%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 227.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  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.0003555177566119663                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0663e+06 | 376832 |      1 | 3.534e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.621999031056709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07277000422683819, dt = 0.0003555177566119663
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.94 us    (2.2%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 253.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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]       :  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.0003554868861963291                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1207e+06 | 376832 |      1 | 3.362e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8064537254693693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07312552198345015, dt = 0.0003554868861963291
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.46 us    (2.0%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 257.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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]       :  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.0003554677097884707                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1089e+06 | 376832 |      1 | 3.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.765771689997362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07348100886964648, dt = 0.0003554677097884707
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.74 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 218.40 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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.0003554592473674908                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1075e+06 | 376832 |      1 | 3.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.760852506416202 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07383647657943496, dt = 0.00028117047938858164
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    (2.5%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 223.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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]       :  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.00035545990194054815                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0224e+06 | 376832 |      1 | 3.686e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.746239270844492 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 98.07919491400001 (s)                                    [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
amr::Godunov: t = 0.07411764705882354, dt = 0.00035545990194054815
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     : 11.13 us   (3.9%)
   patch tree reduce : 1.32 us    (0.5%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 257.71 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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]       :  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.0003554685313210252                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1127e+06 | 376832 |      1 | 3.387e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7784792019945406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07447310696076409, dt = 0.0003554685313210252
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.81 us    (2.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 243.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (61.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.0003554857661196338                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1243e+06 | 376832 |      1 | 3.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.818139152592946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07482857549208512, dt = 0.0003554857661196338
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.56 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 280.02 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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

Will refine      1024    blocks


Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355511024419818                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1783e+06 | 434176 |      1 | 3.685e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.473000826108716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07518406125820475, dt = 0.000355511024419818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.4%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 230.65 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (62.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555438055821548                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9696e+05 | 434176 |      1 | 4.355e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9387817448220974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07553957228262456, dt = 0.0003555438055821548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 256.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035558367945779604                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1280e+06 | 434176 |      1 | 3.849e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.325365183527533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07589511608820672, dt = 0.00028135450002858553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 254.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562013503897855                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1145e+06 | 434176 |      1 | 3.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6000423160551347 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 101.68862350100001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
amr::Godunov: t = 0.0761764705882353, dt = 0.00035562013503897855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.34 us   (3.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 267.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556718066027286                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0797e+06 | 434176 |      1 | 4.021e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1836746295977907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07653209072327428, dt = 0.0003556718066027286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.3%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 229.25 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (60.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557296712562287                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1252e+06 | 434176 |      1 | 3.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3183166482257667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07688776252987702, dt = 0.0003557296712562287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.2%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 231.93 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (63.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035566663978524115                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1383e+06 | 434176 |      1 | 3.814e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.357563821275485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07724349220113325, dt = 0.00035566663978524115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.4%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 211.43 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560165319055767                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1209e+06 | 434176 |      1 | 3.873e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3055689100399914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07759915884091849, dt = 0.00035560165319055767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.2%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 249.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (59.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355547876132055                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1327e+06 | 434176 |      1 | 3.833e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3397564128563793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07795476049410904, dt = 0.00028053362353802624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.5%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 219.11 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555130652084436                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0431e+06 | 434176 |      1 | 4.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426326085373706 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 105.35052655000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
amr::Godunov: t = 0.07823529411764707, dt = 0.0003555130652084436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.58 us   (3.9%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 269.55 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035547693173558514                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1256e+06 | 434176 |      1 | 3.857e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3180486818883907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07859080718285551, dt = 0.00035547693173558514
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 260.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (60.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035544955747150665                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1191e+06 | 434176 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.298402325156241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07894628411459109, dt = 0.00035544955747150665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.0%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 250.18 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543026224902653                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0411e+06 | 434176 |      1 | 4.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0682226637328074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0793017336720626, dt = 0.00035543026224902653
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.4%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 223.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554184520685046                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1339e+06 | 434176 |      1 | 3.829e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.341596848736151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07965716393431163, dt = 0.0003554184520685046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 254.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (60.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554136090535713                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0951e+06 | 434176 |      1 | 3.965e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.227199568591583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08001258238638013, dt = 0.00028153526067870027
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.3%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 236.80 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (59.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554146135604817                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1256e+06 | 434176 |      1 | 3.857e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6276119380852694 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 109.020438178 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
amr::Godunov: t = 0.08029411764705884, dt = 0.0003554146135604817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.78 us   (3.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 540.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 258.04 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035542115120984583                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1225e+06 | 434176 |      1 | 3.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.307801188769174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064953226061931, dt = 0.00035542115120984583
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 246.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (57.5%)
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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543354392417214                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1191e+06 | 434176 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2978799542857615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08100495341182916, dt = 0.00035543354392417214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.4%)
   patch tree reduce : 1.54 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.6%)
   LB compute        : 215.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (62.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554514904024379                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1150e+06 | 434176 |      1 | 3.894e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2858909625741664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08136038695575333, dt = 0.0003554514904024379
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.3%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 220.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (63.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035547473149734115                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1249e+06 | 434176 |      1 | 3.860e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3153995745728584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08171583844615576, dt = 0.00035547473149734115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 218.68 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555030472575082                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1424e+06 | 434176 |      1 | 3.800e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3672813524043907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08207131317765311, dt = 0.00028162799881749356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.4%)
   patch tree reduce : 1.73 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 211.46 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035552906463837304                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1359e+06 | 434176 |      1 | 3.822e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.652445710841934 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 112.65152456800001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
amr::Godunov: t = 0.0823529411764706, dt = 0.00035552906463837304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (4.0%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 259.68 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555660237279246                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1290e+06 | 434176 |      1 | 3.846e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3280733012684847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08270847024110897, dt = 0.0003555660237279246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.5%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 217.67 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (61.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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555078750998767                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1312e+06 | 434176 |      1 | 3.838e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3351081372690627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0830640362648369, dt = 0.0003555078750998767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.1%)
   patch tree reduce : 1.33 us    (0.6%)
   gen split merge   : 621.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 224.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035545117945049847                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6586e+05 | 434176 |      1 | 4.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8470854983983966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08341954413993677, dt = 0.00035545117945049847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.5%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 232.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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]       :  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 = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554024182260407                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0822e+06 | 434176 |      1 | 4.012e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1895232229750654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08377499531938727, dt = 0.0003554024182260407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.5%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.25 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 207.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (58.0%)
Refinement 2:1 balance converged in  1  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]        :  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 = 54272                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  47104              [AMR Grid][rank=0]
Info: cfl dt = 0.0003636361328168032                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6397e+05 | 376832 |      1 | 3.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2729383458313857 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08413039773761331, dt = 0.0002813669682690395
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.19 us    (1.9%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 251.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (63.5%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7168

 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      1344    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629126077852667                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2758e+06 | 452096 |      1 | 3.544e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.858484381485035 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 116.33650881400001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.08441176470588235, dt = 0.0003629126077852667
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     : 11.04 us   (3.3%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 313.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362068122317254                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1131e+06 | 452096 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.216554302441258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08477467731366763, dt = 0.000362068122317254
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     : 5.95 us    (2.6%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 211.34 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (61.9%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036132404714345645                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1376e+06 | 452096 |      1 | 3.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2799539160127025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08513674543598489, dt = 0.00036132404714345645
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     : 5.69 us    (2.3%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 232.15 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606672889740691                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1400e+06 | 452096 |      1 | 3.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.28000522463301 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08549806948312834, dt = 0.0003606672889740691
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     : 5.56 us    (2.3%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 220.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036008667177838966                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1475e+06 | 452096 |      1 | 3.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2956883916433797 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08585873677210241, dt = 0.00036008667177838966
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     : 5.71 us    (2.3%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 228.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035957262157010784                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0949e+06 | 452096 |      1 | 4.129e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.139408080331859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08621882344388081, dt = 0.00025176479141331143
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     : 5.93 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 247.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035925118519141515                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1328e+06 | 452096 |      1 | 3.991e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.270939329395263 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 120.09569866000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.08647058823529412, dt = 0.00035925118519141515
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     : 10.77 us   (3.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 255.16 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035883165179184044                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1291e+06 | 452096 |      1 | 4.004e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2301292502224004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08682983942048553, dt = 0.00035883165179184044
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     : 5.86 us    (2.4%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 220.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584590416619161                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1414e+06 | 452096 |      1 | 3.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.261239712112287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08718867107227737, dt = 0.0003584590416619161
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     : 5.65 us    (2.2%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 239.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358127828497796                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1277e+06 | 452096 |      1 | 4.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.218923649641368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08754713011393929, dt = 0.000358127828497796
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     : 5.70 us    (2.5%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 211.17 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (59.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035783321547341065                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1131e+06 | 452096 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.174266545354381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08790525794243709, dt = 0.00035783321547341065
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.26 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 264.96 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575710306763018                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0723e+06 | 452096 |      1 | 4.216e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0553761607469134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08826309115791049, dt = 0.00026632060679539216
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.51 us    (2.6%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 227.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (60.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035739613803129945                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0953e+06 | 452096 |      1 | 4.128e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3227908150199776 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 123.93111214700001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.08852941176470588, dt = 0.00035739613803129945
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     : 11.54 us   (4.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 250.02 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718195199600366                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0563e+06 | 452096 |      1 | 4.280e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.006244513119645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08888680790273719, dt = 0.00035718195199600366
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.02 us    (2.4%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 234.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035699130917891595                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1295e+06 | 452096 |      1 | 4.003e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2125843811916304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0892439898547332, dt = 0.00035699130917891595
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     : 5.61 us    (2.4%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 217.50 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (59.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035682170078759235                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1313e+06 | 452096 |      1 | 3.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2159708284728645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08960098116391212, dt = 0.00035682170078759235
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.04 us    (2.6%)
   patch tree reduce : 1.54 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 213.85 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566709295521944                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1394e+06 | 452096 |      1 | 3.968e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2373243733911243 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0899578028646997, dt = 0.0003566709295521944
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     : 5.51 us    (2.4%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 213.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (59.2%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565370685410488                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1333e+06 | 452096 |      1 | 3.989e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.218853744153249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09031447379425189, dt = 0.00027376149986575726
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     : 5.58 us    (2.4%)
   patch tree reduce : 1.85 us    (0.8%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 208.48 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564454407490829                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1224e+06 | 452096 |      1 | 4.028e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.446700975007554 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 127.724633737 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.09058823529411765, dt = 0.0003564454407490829
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     : 11.20 us   (4.0%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 253.32 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563373907443979                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0518e+06 | 452096 |      1 | 4.298e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.985251763841493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09094468073486674, dt = 0.0003563373907443979
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.07 us    (2.6%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 211.82 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356242058407213                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1300e+06 | 452096 |      1 | 4.001e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.206427151251621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09130101812561113, dt = 0.000356242058407213
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     : 5.70 us    (2.5%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 209.91 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (60.2%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561580793290159                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1317e+06 | 452096 |      1 | 3.995e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2104461155034483 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09165726018401835, dt = 0.0003561580793290159
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     : 5.99 us    (2.4%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 230.69 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560830922464516                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1279e+06 | 452096 |      1 | 4.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.19876946539928 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09201341826334736, dt = 0.0003560830922464516
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     : 5.86 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 252.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035601631321092254                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0843e+06 | 452096 |      1 | 4.170e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.074374093170491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09236950135559381, dt = 0.00027755746793560465
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     : 5.98 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 258.17 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (62.6%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035596979361274565                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1279e+06 | 452096 |      1 | 4.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4928405164829006 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 131.559761927 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.09264705882352942, dt = 0.00035596979361274565
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     : 11.21 us   (4.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 257.29 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355915946282985                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0949e+06 | 452096 |      1 | 4.129e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.103423440887207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09300302861714216, dt = 0.000355915946282985
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.09 us    (2.5%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 226.44 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355868596390427                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1300e+06 | 452096 |      1 | 4.001e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2025714088981365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09335894456342514, dt = 0.000355868596390427
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     : 5.76 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 246.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558272625564201                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1039e+06 | 452096 |      1 | 4.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1281947204058227 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09371481315981557, dt = 0.0003558272625564201
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     : 5.45 us    (2.2%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 230.37 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557915209197789                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1323e+06 | 452096 |      1 | 3.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.208184749381191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.094070640422372, dt = 0.0003557915209197789
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     : 5.53 us    (2.4%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 215.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576099812014344                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0749e+06 | 452096 |      1 | 4.206e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.045375631197848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09442643194329177, dt = 0.00027945040964941215
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     : 5.73 us    (2.5%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.6%)
   LB compute        : 210.41 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (55.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035574061531858884                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0680e+06 | 452096 |      1 | 4.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3765951544240855 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 135.41109916300002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.09470588235294118, dt = 0.00035574061531858884
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     : 11.57 us   (4.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 266.73 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571860598679247                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1353e+06 | 452096 |      1 | 3.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2160739350250838 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09506162296825978, dt = 0.00035571860598679247
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.26 us    (2.3%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 250.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (61.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557009942572025                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1313e+06 | 452096 |      1 | 3.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.204387171307108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09541734157424657, dt = 0.0003557009942572025
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     : 5.59 us    (2.2%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 229.82 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035568754951304166                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1369e+06 | 452096 |      1 | 3.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.220284652746788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09577304256850377, dt = 0.00035568754951304166
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     : 5.71 us    (2.3%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 231.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (61.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556780693610939                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1408e+06 | 452096 |      1 | 3.963e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.231108878150675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09612873011801681, dt = 0.0003556780693610939
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     : 5.53 us    (2.4%)
   patch tree reduce : 1.85 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.5%)
   LB compute        : 211.94 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567237652296875                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1197e+06 | 452096 |      1 | 4.038e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.171343348748781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09648440818737791, dt = 0.00028029769497503465
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.05 us    (2.6%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 209.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (59.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567052978885996                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0777e+06 | 452096 |      1 | 4.195e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.405516768457592 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 139.245322492 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.09676470588235295, dt = 0.00035567052978885996
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     : 11.52 us   (4.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 258.69 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556712312358806                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0070e+06 | 452096 |      1 | 4.489e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8520236755663446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0971203764121418, dt = 0.0003556712312358806
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     : 5.64 us    (2.3%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 225.42 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556753374015935                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1314e+06 | 452096 |      1 | 3.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2044101739467363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09747604764337768, dt = 0.0003556753374015935
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.16 us    (2.4%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 242.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (63.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556827444739563                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1321e+06 | 452096 |      1 | 3.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.206468655523948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09783172298077927, dt = 0.0003556827444739563
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     : 5.38 us    (1.0%)
   patch tree reduce : 1.68 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 525.06 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556933635623897                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1287e+06 | 452096 |      1 | 4.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.19665554897016 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09818740572525322, dt = 0.0003556933635623897
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     : 5.62 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 246.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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.0003557071190442121                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0992e+06 | 452096 |      1 | 4.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1134122058019007 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09854309908881562, dt = 0.0002804303229490962
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     : 5.84 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 242.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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.00035572016394723623                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0482e+06 | 452096 |      1 | 4.313e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.340723499573305 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 143.140087203 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.09882352941176471, dt = 0.00035572016394723623
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     : 11.20 us   (4.0%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 255.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.00035573938126225825                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8986e+05 | 452096 |      1 | 4.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.803859433051767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09917924957571195, dt = 0.00035573938126225825
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     : 5.59 us    (2.1%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 242.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (60.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576160160667047                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1324e+06 | 452096 |      1 | 3.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.207753638089019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0995349889569742, dt = 0.00035576160160667047
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     : 5.58 us    (1.9%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 278.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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]       :  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.00035578303151691633                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1233e+06 | 452096 |      1 | 4.025e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1820542252359436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09989075055858088, dt = 0.00035578303151691633
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     : 5.45 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 259.45 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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.00035575903711111733                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1153e+06 | 452096 |      1 | 4.054e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.15978009809699 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10024653359009779, dt = 0.00035575903711111733
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     : 5.83 us    (2.4%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.16 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 222.02 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (61.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.00035573865658362056                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1247e+06 | 452096 |      1 | 4.020e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.186088979863664 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1006022926272089, dt = 0.0002800603139675728
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     : 5.57 us    (2.1%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 246.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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]       :  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.0003557251352936357                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1100e+06 | 452096 |      1 | 4.073e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.475302045817755 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 147.180317449 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.10088235294117648, dt = 0.0003557251352936357
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     : 11.03 us   (4.1%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 681.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 247.10 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  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.00035571073108040083                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1484e+06 | 452096 |      1 | 3.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.252952749455116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10123807807647012, dt = 0.00035571073108040083
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     : 5.66 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 251.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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.0003556994479029633                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0916e+06 | 452096 |      1 | 4.142e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0918816971472154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10159378880755052, dt = 0.0003556994479029633
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     : 5.69 us    (1.1%)
   patch tree reduce : 1.65 us    (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.2%)
   LB compute        : 503.33 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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.00036463602973240116                                    [amr::basegodunov][rank=0]
Info: Timestep 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.5465e+05 | 394752 |      1 | 4.135e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.09673029408867 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10194948825545348, dt = 0.00036463602973240116
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.07 us    (2.0%)
   patch tree reduce : 1.25 us    (0.5%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 231.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (56.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]        :  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.0003637379115838222                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1508e+06 | 437760 |      1 | 3.804e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.450835479758206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10231412428518588, dt = 0.0003637379115838222
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.03 us    (2.0%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 228.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (62.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.0003629413471646726                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1086e+06 | 437760 |      1 | 3.949e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3160823242978945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1026778621967697, dt = 0.0002633142738185379
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.89 us    (2.3%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 238.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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]       :  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.00036242319507028367                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0987e+06 | 437760 |      1 | 3.984e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3790694361964704 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 150.98108085200002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.10294117647058824, dt = 0.00036242319507028367
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     : 11.55 us   (4.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 260.52 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.0003617697608513508                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0275e+06 | 437760 |      1 | 4.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0624836392405768 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10330359966565852, dt = 0.0003617697608513508
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.39 us    (2.0%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 244.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.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.0003611854465177538                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0901e+06 | 437760 |      1 | 4.016e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2432066048869665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10366536942650988, dt = 0.0003611854465177538
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.61 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 212.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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.0003606616776254935                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1200e+06 | 437760 |      1 | 3.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.326634190757957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10402655487302763, dt = 0.0003606616776254935
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.84 us    (2.4%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 221.70 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (58.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.00036019109470376723                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0447e+06 | 437760 |      1 | 4.190e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.098434858179261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10438721655065313, dt = 0.00036019109470376723
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.58 us    (2.4%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 212.39 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.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.0003597673607465166                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1253e+06 | 437760 |      1 | 3.890e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.333313010569325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1047474076453569, dt = 0.00025259235464311636
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.42 us    (2.2%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.6%)
   LB compute        : 225.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.000359497026347031                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1119e+06 | 437760 |      1 | 3.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.309750881741165 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 154.787043025 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.10500000000000001, dt = 0.000359497026347031
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     : 11.12 us   (4.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 521.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 253.66 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (59.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.00035914061333433355                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1343e+06 | 437760 |      1 | 3.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.35339163220687 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10535949702634705, dt = 0.00035914061333433355
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.35 us    (2.1%)
   patch tree reduce : 1.43 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 237.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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.0003588190136921688                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1353e+06 | 437760 |      1 | 3.856e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.353124621766689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10571863763968138, dt = 0.0003588190136921688
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.61 us    (2.4%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 215.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  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.00035853004622171485                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1353e+06 | 437760 |      1 | 3.856e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3501921340849043 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10607745665337355, dt = 0.00035853004622171485
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.42 us    (2.2%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 230.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.00035827007418936667                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1284e+06 | 437760 |      1 | 3.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3270434207510715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10643598669959527, dt = 0.00035827007418936667
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.64 us    (2.1%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 252.26 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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.00035803593919389495                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1377e+06 | 437760 |      1 | 3.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3520606884839395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10679425677378464, dt = 0.00026456675562713805
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.55 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 235.55 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (52.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.00035787905782693244                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1464e+06 | 437760 |      1 | 3.819e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4942450109628793 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 158.510791461 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.10705882352941178, dt = 0.00035787905782693244
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     : 11.51 us   (4.1%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 257.14 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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]       :  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.000357683341468964                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1419e+06 | 437760 |      1 | 3.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3605652712059197 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1074167025872387, dt = 0.000357683341468964
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.56 us    (2.2%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.6%)
   LB compute        : 238.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (61.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.00035750667085645616                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1434e+06 | 437760 |      1 | 3.829e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.363244438689559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10777438592870767, dt = 0.00035750667085645616
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.99 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 247.59 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.00035734709752648623                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6523e+05 | 437760 |      1 | 4.535e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8377907032920744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10813189259956413, dt = 0.00035734709752648623
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.35 us    (1.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 266.49 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.1%)
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.0003572029032959443                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1371e+06 | 437760 |      1 | 3.850e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.341577941358871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10848923969709061, dt = 0.0003572029032959443
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.78 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 244.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (60.7%)
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.00035707257105669087                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0472e+06 | 437760 |      1 | 4.180e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.076289125080981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10884644260038655, dt = 0.0002712044584369938
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.57 us    (2.3%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 227.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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.00035698260978051205                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0665e+06 | 437760 |      1 | 4.105e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3785153703564026 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 162.335778983 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.10911764705882354, dt = 0.00035698260978051205
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     : 11.45 us   (4.2%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 244.94 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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]       :  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.0003568734539069244                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0350e+06 | 437760 |      1 | 4.229e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0386061929778867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10947462966860405, dt = 0.0003568734539069244
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    (2.5%)
   patch tree reduce : 1.54 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 216.83 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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.00035677482691345364                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0366e+06 | 437760 |      1 | 4.223e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0423275497789057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10983150312251097, dt = 0.00035677482691345364
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.46 us    (2.3%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 219.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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.0003566857676222177                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1251e+06 | 437760 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3011766668848015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11018827794942443, dt = 0.0003566857676222177
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.22 us    (2.4%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 245.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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]       :  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.0003566054226491486                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0411e+06 | 437760 |      1 | 4.205e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0538320313281644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11054496371704664, dt = 0.0003566054226491486
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.78 us    (1.9%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 279.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.0003565330335353179                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1333e+06 | 437760 |      1 | 3.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.323642074472706 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11090156913969579, dt = 0.00027490144853951903
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.76 us    (2.4%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 224.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (56.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.00035648256193198036                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0056e+06 | 437760 |      1 | 4.353e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2734743970977447 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 166.22718566100002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.11117647058823531, dt = 0.00035648256193198036
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     : 11.12 us   (3.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 256.90 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
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]       :  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.0003564226285657342                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8519e+05 | 437760 |      1 | 4.443e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8881939431698758 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11153295315016729, dt = 0.0003564226285657342
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.69 us    (2.1%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 246.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (62.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.00035636862413688315                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1168e+06 | 437760 |      1 | 3.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.27338180251149 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188937577873302, dt = 0.00035636862413688315
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.73 us    (2.5%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 214.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.0003563196296091859                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0366e+06 | 437760 |      1 | 4.223e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.037933452816815 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1122457444028699, dt = 0.0003563196296091859
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.89 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 244.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (56.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.0003562752696591097                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0269e+06 | 437760 |      1 | 4.263e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0090446983055448 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11260206403247909, dt = 0.0003562752696591097
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.91 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 287.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.00035623520972673635                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0916e+06 | 437760 |      1 | 4.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1981786809543924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1129583393021382, dt = 0.00027695481550887857
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.62 us    (2.2%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 231.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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.0003562069905709439                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7993e+05 | 437760 |      1 | 4.467e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.231882756985364 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 170.168270285 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.11323529411764707, dt = 0.0003562069905709439
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     : 11.45 us   (4.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 550.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 246.69 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (61.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.0003561738468645639                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1296e+06 | 437760 |      1 | 3.875e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3090917189478497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11359150110821802, dt = 0.0003561738468645639
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.70 us    (2.1%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 253.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.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.00035614425203715555                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1275e+06 | 437760 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3024853423936418 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11394767495508258, dt = 0.00035614425203715555
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.20 us    (2.6%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 218.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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]       :  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.00035611798806670607                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1349e+06 | 437760 |      1 | 3.857e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3238588338195623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11430381920711974, dt = 0.00035611798806670607
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.83 us    (2.4%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.6%)
   LB compute        : 223.54 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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.0003560948601201352                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1317e+06 | 437760 |      1 | 3.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3142576936832224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11465993719518644, dt = 0.0003560948601201352
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.80 us    (2.5%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 216.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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.00035607469405417536                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1261e+06 | 437760 |      1 | 3.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2977713509325297 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11501603205530657, dt = 0.00027808559175225567
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.08 us    (2.3%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 244.85 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  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.0003560609865330587                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1338e+06 | 437760 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5929300024095854 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 173.907132356 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.11529411764705882, dt = 0.0003560609865330587
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     : 10.86 us   (3.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 262.68 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.00035604571545195797                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1191e+06 | 437760 |      1 | 3.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.276907451930283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11565017863359188, dt = 0.00035604571545195797
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.83 us    (2.4%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 228.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  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.00035603301352170124                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0171e+06 | 437760 |      1 | 4.304e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9779971037005595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11600622434904384, dt = 0.00035603301352170124
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.65 us    (2.4%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 218.35 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  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.00035602276693641043                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0205e+06 | 437760 |      1 | 4.290e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9880163485711413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11636225736256554, dt = 0.00035602276693641043
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.00 us    (2.6%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 214.14 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.00035601487411493607                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0893e+06 | 437760 |      1 | 4.019e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.189211081664136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11671828012950196, dt = 0.00035601487411493607
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.74 us    (2.5%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 211.82 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.2%)
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.00035600924446942383                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0432e+06 | 437760 |      1 | 4.196e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0543485237969654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1170742950036169, dt = 0.0002786461728536971
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.75 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 249.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (62.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.000356006411599874                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0261e+06 | 437760 |      1 | 4.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3513842789499813 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 177.844579608 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.11735294117647059, dt = 0.000356006411599874
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     : 11.22 us   (4.0%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 257.30 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  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.00035600462345286555                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0927e+06 | 437760 |      1 | 4.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.199036121415947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11770894758807046, dt = 0.00035600462345286555
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.67 us    (2.3%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 226.43 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (62.1%)
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.0003560048999176742                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0346e+06 | 437760 |      1 | 4.231e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.02898927112495 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11806495221152333, dt = 0.0003560048999176742
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.53 us    (2.2%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 230.89 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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.00035600718324039343                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1239e+06 | 437760 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.290483184023108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.118420957111441, dt = 0.00035600718324039343
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.48 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 244.48 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (62.1%)
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.00035601142152092764                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1254e+06 | 437760 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2948059695893135 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11877696429468139, dt = 0.00035601142152092764
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.37 us    (1.9%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 259.51 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (61.5%)
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.0003560175683093777                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1258e+06 | 437760 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2960418941139658 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11913297571620232, dt = 0.0002787889896800344
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.54 us    (2.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 250.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (62.5%)
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.00035602371012721996                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1238e+06 | 437760 |      1 | 3.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.576596488269294 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 181.64766823600002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
amr::Godunov: t = 0.11941176470588236, dt = 0.00035602371012721996
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     : 11.00 us   (3.8%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 267.00 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.0003649731933601764                                     [amr::basegodunov][rank=0]
Info: Timestep 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.5462e+05 | 380416 |      1 | 3.985e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.216264823887368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11976778841600957, dt = 0.0003649731933601764
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     : 5.97 us    (2.1%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 260.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (66.5%)
Refinement 2:1 balance converged in  2  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]        :  16

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.0003640909518111677                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2622e+06 | 452096 |      1 | 3.582e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.668316900742069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12013276160936975, dt = 0.0003640909518111677
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     : 5.77 us    (2.0%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 276.78 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003633091377680151                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1296e+06 | 452096 |      1 | 4.002e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.274824836565884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12049685256118092, dt = 0.0003633091377680151
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     : 5.86 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 293.74 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (61.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036261450339025844                                    [amr::basegodunov][rank=0]
Info: Timestep 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.5842e+05 | 452096 |      1 | 4.717e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7726933410326087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12086016169894893, dt = 0.00036261450339025844
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     : 5.90 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 273.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036199578576439576                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0995e+06 | 452096 |      1 | 4.112e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1748657375725626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12122277620233919, dt = 0.0002478120329549305
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     : 5.86 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 280.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036161462671795077                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0711e+06 | 452096 |      1 | 4.221e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.113624338678363 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 185.61055469000001 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.12147058823529412, dt = 0.00036161462671795077
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     : 11.36 us   (4.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 251.03 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036110233877360615                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1411e+06 | 452096 |      1 | 3.962e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.285905557082988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12183220286201207, dt = 0.00036110233877360615
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     : 5.81 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 263.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036064320271736737                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1378e+06 | 452096 |      1 | 3.974e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.271583306192119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12219330520078568, dt = 0.00036064320271736737
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     : 5.84 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.4%)
   LB compute        : 262.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602308077076385                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1362e+06 | 452096 |      1 | 3.979e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2629093506052986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12255394840350305, dt = 0.0003602308077076385
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     : 5.81 us    (2.1%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 245.11 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 6.80 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (63.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598596131399244                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0657e+06 | 452096 |      1 | 4.242e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0570714449717773 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12291417921121069, dt = 0.0003598596131399244
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.04 us    (2.2%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 254.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595248174501744                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1164e+06 | 452096 |      1 | 4.050e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1989793312177026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1232740388243506, dt = 0.00025537294035528346
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     : 5.60 us    (2.4%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 213.59 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593084700314218                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1326e+06 | 452096 |      1 | 3.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3031049070128713 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 189.52982273100002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.12352941176470589, dt = 0.0003593084700314218
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     : 11.31 us   (4.2%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 245.86 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003590263748505021                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0569e+06 | 452096 |      1 | 4.277e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.023991626875008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1238887202347373, dt = 0.0003590263748505021
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     : 5.95 us    (2.3%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 236.83 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (63.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587706029035127                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1415e+06 | 452096 |      1 | 3.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.263315948914728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1242477466095878, dt = 0.0003587706029035127
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     : 5.93 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 262.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003585382729956606                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0175e+06 | 452096 |      1 | 4.443e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.906853722706972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12460651721249132, dt = 0.0003585382729956606
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     : 5.53 us    (2.3%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 218.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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]       :  14272

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035832686227100147                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0180e+06 | 452096 |      1 | 4.441e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9064232074127787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12496505548548698, dt = 0.00035832686227100147
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     : 5.11 us    (2.1%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 631.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 231.35 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581341572442499                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0677e+06 | 452096 |      1 | 4.234e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.046417743192972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12532338234775797, dt = 0.0002648529463596949
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     : 5.69 us    (2.3%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.4%)
   LB compute        : 223.22 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (56.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]        :  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

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.000358003303931993                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7638e+05 | 394752 |      1 | 4.043e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3583135215366964 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 193.594273394 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.12558823529411767, dt = 0.000358003303931993
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     : 11.21 us   (3.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 263.66 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  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.0003578385604730895                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9108e+05 | 394752 |      1 | 3.983e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2357358676094483 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12594623859804965, dt = 0.0003578385604730895
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.56 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 244.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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]       :  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.00035768773508676406                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0804e+06 | 394752 |      1 | 3.654e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5256706102169364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12630407715852274, dt = 0.00035768773508676406
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.90 us    (1.1%)
   patch tree reduce : 1.74 us    (0.3%)
   gen split merge   : 1.03 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.2%)
   LB compute        : 498.65 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (60.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.0003575495733460237                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1102e+06 | 394752 |      1 | 3.556e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6213653717894014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1266617648936095, dt = 0.0003575495733460237
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.53 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 242.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.4%)
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.000357423691566714                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1222e+06 | 394752 |      1 | 3.518e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.659132733638156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12701931446695552, dt = 0.000357423691566714
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.09 us    (2.4%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 237.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (62.0%)
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.0003573088879513878                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1097e+06 | 394752 |      1 | 3.557e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6171260839257684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12737673815852224, dt = 0.0002703206650071788
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.87 us    (2.5%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 216.25 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.00035722920132782895                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1234e+06 | 394752 |      1 | 3.514e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7695173107464406 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 197.307026678 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.12764705882352942, dt = 0.00035722920132782895
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     : 11.37 us   (4.3%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 237.61 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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.00035713130619857534                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1223e+06 | 394752 |      1 | 3.517e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6562560442693113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12800428802485725, dt = 0.00035713130619857534
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.78 us    (2.4%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.26 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 220.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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.00035704183197446415                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1180e+06 | 394752 |      1 | 3.531e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.641197483032794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12836141933105583, dt = 0.00035704183197446415
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.79 us    (2.2%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 240.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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.000356960005110451                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0455e+06 | 394752 |      1 | 3.776e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4043007731488872 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1287184611630303, dt = 0.000356960005110451
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.80 us    (2.3%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 233.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (62.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.0003568851356060929                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8842e+05 | 394752 |      1 | 3.994e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2176410082223703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12907542116814075, dt = 0.0003568851356060929
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.62 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 233.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.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.0003568166072004514                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0980e+06 | 394752 |      1 | 3.595e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5737390298804086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12943230630374683, dt = 0.0002735760491943684
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.61 us    (2.4%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 210.41 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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]       :  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.0003567682691804436                                     [amr::basegodunov][rank=0]
Info: Timestep 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.4705e+05 | 394752 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.362817170827464 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 200.942439984 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.1297058823529412, dt = 0.0003567682691804436
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     : 11.39 us   (4.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 247.79 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  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.0003567096132670462                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0067e+06 | 394752 |      1 | 3.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.275266874359576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13006265062212163, dt = 0.0003567096132670462
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.83 us    (2.3%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 237.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.0003566559125064779                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0829e+06 | 394752 |      1 | 3.645e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.522629974502319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1304193602353887, dt = 0.0003566559125064779
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.92 us    (2.6%)
   patch tree reduce : 1.80 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 212.24 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.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.0003566067597158532                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0682e+06 | 394752 |      1 | 3.696e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.47435133649546 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13077601614789516, dt = 0.0003566067597158532
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.54 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 261.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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.000356561789172594                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1260e+06 | 394752 |      1 | 3.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6620091966075674 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13113262290761102, dt = 0.000356561789172594
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.30 us    (1.9%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 257.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  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.0003565206720354876                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1310e+06 | 394752 |      1 | 3.490e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.677588983817612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1314891846967836, dt = 0.00027552118556933847
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     : 19.70 us   (7.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 244.55 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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]       :  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.00035649150200649097                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0701e+06 | 394752 |      1 | 3.689e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.688786396073292 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 204.518475865 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.13176470588235295, dt = 0.00035649150200649097
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     : 11.27 us   (4.3%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 237.82 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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.0003564563199709082                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0547e+06 | 394752 |      1 | 3.743e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.428913811537909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13212119738435943, dt = 0.0003564563199709082
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.35 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 236.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.00035642388383699505                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0528e+06 | 394752 |      1 | 3.750e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.422282608307641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13247765370433034, dt = 0.00035642388383699505
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.7%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 213.30 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.0003563940027123942                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7842e+05 | 394752 |      1 | 4.035e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1803075206942153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13283407758816734, dt = 0.0003563940027123942
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.5%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 241.49 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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.00035636650383195564                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0112e+06 | 394752 |      1 | 3.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.286727707312657 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13319047159087974, dt = 0.00035636650383195564
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.75 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 223.18 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  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.00035634123071440356                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0106e+06 | 394752 |      1 | 3.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.284323473894415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13354683809471168, dt = 0.0002766913170530183
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.44 us    (2.3%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 216.18 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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.00035632312005508233                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8448e+05 | 394752 |      1 | 4.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4841556695399314 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 208.223832694 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.1338235294117647, dt = 0.00035632312005508233
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     : 11.17 us   (1.9%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.2%)
   LB compute        : 555.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  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.00035630145532280783                                    [amr::basegodunov][rank=0]
Info: Timestep 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.8944e+05 | 394752 |      1 | 3.990e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2152190600538355 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13417985253181977, dt = 0.00035630145532280783
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.51 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 245.97 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.0003562816545104146                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1074e+06 | 394752 |      1 | 3.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.598411315698054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13453615398714258, dt = 0.0003562816545104146
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.40 us    (2.1%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 236.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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]       :  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.0003562636093980996                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1264e+06 | 394752 |      1 | 3.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6599556726078766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13489243564165299, dt = 0.0003562636093980996
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.50 us    (2.0%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 252.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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.00035624722174772984                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1194e+06 | 394752 |      1 | 3.527e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6368221644831373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1352486992510511, dt = 0.00035624722174772984
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.79 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 264.28 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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]       :  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.0003562324023750635                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0998e+06 | 394752 |      1 | 3.589e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.572924321264458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13560494647279883, dt = 0.00027740646837765004
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.78 us    (2.6%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 206.07 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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.00035622193401574126                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0946e+06 | 394752 |      1 | 3.606e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7690785194647716 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 211.78028015200002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.13588235294117648, dt = 0.00035622193401574126
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     : 10.96 us   (3.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 262.07 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.000356209690951335                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1172e+06 | 394752 |      1 | 3.534e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6291997910136975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13623857487519223, dt = 0.000356209690951335
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.41 us    (1.9%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 262.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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.0003561987859066059                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1034e+06 | 394752 |      1 | 3.578e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5844054424962217 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13659478456614357, dt = 0.0003561987859066059
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.01 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 272.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (54.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.00035618915061947086                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0638e+06 | 394752 |      1 | 3.711e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4554956548817857 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1369509833520502, dt = 0.00035618915061947086
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.44 us    (2.3%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 218.57 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  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.00035618072542632583                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1104e+06 | 394752 |      1 | 3.555e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6069826061616537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13730717250266966, dt = 0.00035618072542632583
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.91 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 250.44 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  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

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.0003649397252103187                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2526e+05 | 337408 |      1 | 3.647e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5162575369213935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13766335322809597, dt = 0.00027782324249225887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.8%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 262.17 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.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]         :  256

Will refine      1024    blocks


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.0003642859305085894                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1722e+06 | 380416 |      1 | 3.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0819294323831086 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 215.27794595100002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.13794117647058823, dt = 0.0003642859305085894
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     : 11.42 us   (4.1%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 254.85 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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]       :  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.0003635074663381859                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1148e+06 | 380416 |      1 | 3.412e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8430451157594776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383054624010968, dt = 0.0003635074663381859
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     : 5.70 us    (2.4%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 220.25 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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.000362816204316529                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1075e+06 | 380416 |      1 | 3.435e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.809656434176738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.138668969867435, dt = 0.000362816204316529
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     : 5.78 us    (2.5%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 216.18 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  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

Will refine      1280    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622008042339829                                     [amr::basegodunov][rank=0]
Info: Timestep 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.2971e+06 | 452096 |      1 | 3.485e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.747402603585699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1390317860717515, dt = 0.0003622008042339829
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     : 5.49 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.4%)
   LB compute        : 246.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036165159722923015                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1325e+06 | 452096 |      1 | 3.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.266422527665776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1393939868759855, dt = 0.00036165159722923015
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.01 us    (2.3%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 237.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.0%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003611603074504766                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7369e+05 | 452096 |      1 | 4.643e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8040451031599027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13975563847321473, dt = 0.00024436152678528056
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     : 5.55 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 282.17 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003608599264952791                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1227e+06 | 452096 |      1 | 4.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1846358510451154 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 218.915154875 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.14, dt = 0.0003608599264952791
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     : 10.89 us   (4.0%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 247.54 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036044996452246026                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1370e+06 | 452096 |      1 | 3.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2671000426261125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403608599264953, dt = 0.00036044996452246026
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     : 5.50 us    (2.2%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 1.16 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 226.68 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (61.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036008106473980184                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0769e+06 | 452096 |      1 | 4.198e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0908119971861865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14072130989101775, dt = 0.00036008106473980184
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     : 5.77 us    (2.3%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 232.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035974841790482393                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0477e+06 | 452096 |      1 | 4.315e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.004044944455366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14108139095575756, dt = 0.00035974841790482393
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.10 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 274.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.0%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035944784952806003                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1275e+06 | 452096 |      1 | 4.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2298105811318565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14144113937366237, dt = 0.00035944784952806003
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.26 us    (2.7%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 216.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591757274086368                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1308e+06 | 452096 |      1 | 3.998e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2367418059512376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14180058722319044, dt = 0.0002582363062213211
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     : 5.75 us    (2.3%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 226.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (62.6%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035899712855511334                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1309e+06 | 452096 |      1 | 3.998e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3254492331571632 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 222.89562377700003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.14205882352941177, dt = 0.00035899712855511334
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     : 11.29 us   (4.0%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 257.96 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035876659480433973                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1254e+06 | 452096 |      1 | 4.017e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2170356183041138 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14241782065796688, dt = 0.00035876659480433973
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     : 5.67 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 237.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035855681992269175                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1166e+06 | 452096 |      1 | 4.049e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1899724149320896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1427765872527712, dt = 0.00035855681992269175
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     : 5.83 us    (2.5%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.6%)
   LB compute        : 210.94 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (61.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583656000891111                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1289e+06 | 452096 |      1 | 4.005e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2230644307176903 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1431351440726939, dt = 0.0003583656000891111
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     : 5.88 us    (2.4%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 228.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035819099946694685                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1351e+06 | 452096 |      1 | 3.983e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2391557527637134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14349350967278302, dt = 0.00035819099946694685
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.17 us    (2.7%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 212.39 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580313145220774                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1316e+06 | 452096 |      1 | 3.995e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.227584188647637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14385170067224995, dt = 0.0002659463865735956
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     : 5.69 us    (2.4%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 216.87 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035792206490485785                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1314e+06 | 452096 |      1 | 3.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3959590752681144 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 226.83217976600002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.14411764705882354, dt = 0.00035792206490485785
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     : 11.21 us   (4.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 257.71 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577848317467859                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1455e+06 | 452096 |      1 | 3.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2647112286182773 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14447556912372841, dt = 0.0003577848317467859
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     : 5.72 us    (1.1%)
   patch tree reduce : 1.67 us    (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.2%)
   LB compute        : 522.74 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (7.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576588083402202                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1374e+06 | 452096 |      1 | 3.975e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.240594482704891 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1448333539554752, dt = 0.0003576588083402202
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.16 us    (2.3%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 245.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575429216519453                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0179e+06 | 452096 |      1 | 4.441e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.899081923090995 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1451910127638154, dt = 0.0003575429216519453
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     : 5.76 us    (2.2%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 247.49 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035743621979060817                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1480e+06 | 452096 |      1 | 3.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2684422988710615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14554855568546735, dt = 0.00035743621979060817
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     : 5.64 us    (2.3%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 221.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733786841785715                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1298e+06 | 452096 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.215713228146459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14590599190525796, dt = 0.000270478682977332
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     : 5.73 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 247.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (61.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572693480067299                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1238e+06 | 452096 |      1 | 4.023e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4204485494814723 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 230.791678522 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.1461764705882353, dt = 0.0003572693480067299
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     : 11.33 us   (4.0%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 540.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 258.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357185010470381                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1117e+06 | 452096 |      1 | 4.067e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1626517844009867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14653373993624202, dt = 0.000357185010470381
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.27 us    (2.4%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.25 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 238.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035710768321612686                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1073e+06 | 452096 |      1 | 4.083e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.149419275841607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1468909249467124, dt = 0.00035710768321612686
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.19 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 262.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703674379966056                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1457e+06 | 452096 |      1 | 3.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.257851215704994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14724803262992853, dt = 0.00035703674379966056
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     : 5.64 us    (2.3%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 227.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035697163511268156                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1171e+06 | 452096 |      1 | 4.047e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1760724817008175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1476050693737282, dt = 0.00035697163511268156
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     : 5.60 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 257.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569118578044465                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1446e+06 | 452096 |      1 | 3.950e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.253532108865621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14796204100884086, dt = 0.0002732531088062151
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     : 5.69 us    (2.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 254.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035686962413464653                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1287e+06 | 452096 |      1 | 4.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4559505040161884 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 234.76887908 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.14823529411764708, dt = 0.00035686962413464653
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     : 11.34 us   (3.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 267.16 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035681817774967247                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1367e+06 | 452096 |      1 | 3.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.230163244524973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14859216374178172, dt = 0.00035681817774967247
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     : 5.78 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 259.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567709321679983                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8663e+05 | 452096 |      1 | 4.582e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8033310187567415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1489489819195314, dt = 0.0003567709321679983
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     : 11.71 us   (4.5%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 232.83 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (62.1%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035672755229430094                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1331e+06 | 452096 |      1 | 3.990e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2190111625133095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1493057528516994, dt = 0.00035672755229430094
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     : 5.74 us    (2.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.72 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566877373354419                                     [amr::basegodunov][rank=0]
Info: Timestep 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.9488e+05 | 452096 |      1 | 4.544e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8260567594598873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496624804039937, dt = 0.0003566877373354419
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     : 5.81 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 261.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (60.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566512190132628                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1293e+06 | 452096 |      1 | 4.003e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2076576634232095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15001916814132912, dt = 0.00027494950572970467
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     : 5.79 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 247.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662529083517035                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0405e+06 | 452096 |      1 | 4.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.277992746029123 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 238.85672038500002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.15029411764705883, dt = 0.00035662529083517035
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     : 10.97 us   (4.0%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 249.75 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565940166660032                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1353e+06 | 452096 |      1 | 3.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.223974699867846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150650742937894, dt = 0.0003565940166660032
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     : 5.34 us    (2.3%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 208.94 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (61.2%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565653011599488                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1340e+06 | 452096 |      1 | 3.987e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2200025552504767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15100733695455998, dt = 0.0003565653011599488
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     : 5.38 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.4%)
   LB compute        : 244.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035653879462691927                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1250e+06 | 452096 |      1 | 4.019e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1941606709526247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15136390225571994, dt = 0.00035653879462691927
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     : 5.71 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 252.29 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651434791683455                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1285e+06 | 452096 |      1 | 4.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2039011588291175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15172044105034685, dt = 0.00035651434791683455
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     : 5.55 us    (2.1%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 245.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564918247187415                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1311e+06 | 452096 |      1 | 3.997e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2110202094229074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15207695539826369, dt = 0.00027598577820692194
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     : 5.67 us    (2.5%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 207.86 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (59.1%)
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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564756894577727                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1290e+06 | 452096 |      1 | 4.005e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.481067702659335 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 242.97107442400002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.1523529411764706, dt = 0.0003564756894577727
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     : 11.16 us   (4.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 530.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 251.92 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564562747546343                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0344e+06 | 452096 |      1 | 4.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9362882914575517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15270941686592837, dt = 0.0003564562747546343
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     : 5.39 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 211.57 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564384639230941                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1173e+06 | 452096 |      1 | 4.046e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1713402139312916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.153065873140683, dt = 0.0003564384639230941
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     : 5.96 us    (2.3%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 243.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564221598045888                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0914e+06 | 452096 |      1 | 4.143e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.097569841874442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1534223116046061, dt = 0.0003564221598045888
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.10 us    (2.2%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 253.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564072735869054                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1229e+06 | 452096 |      1 | 4.026e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.18700710906361 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15377873376441067, dt = 0.0003564072735869054
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     : 5.37 us    (2.0%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 250.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035639372410204996                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1283e+06 | 452096 |      1 | 4.007e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2022753763572873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15413514103799758, dt = 0.0002766236678847789
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     : 5.58 us    (2.3%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 228.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035638411571722563                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1314e+06 | 452096 |      1 | 3.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.492079952058552 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 247.00495703 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.15441176470588236, dt = 0.00035638411571722563
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     : 11.13 us   (4.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 242.38 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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]       :  8384

 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035637275922174025                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1346e+06 | 452096 |      1 | 3.985e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2198237889610284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1547681488215996, dt = 0.00035637275922174025
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     : 5.30 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 862.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 215.19 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (61.0%)
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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563625492174516                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0221e+06 | 452096 |      1 | 4.423e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9004384291327105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15512452158082132, dt = 0.0003563625492174516
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     : 5.81 us    (2.3%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 236.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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]       :  12480

 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

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.0003650405779144683                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7610e+05 | 394752 |      1 | 4.044e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.172224431430459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15548088413003877, dt = 0.0003650405779144683
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.57 us    (2.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 239.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (60.8%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4288

 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      1344    blocks


Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036418669586825696                                    [amr::basegodunov][rank=0]
Info: Timestep 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.2992e+06 | 470016 |      1 | 3.618e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.632448869061833 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15584592470795325, dt = 0.00036418669586825696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.0%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 249.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036343055028055353                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0652e+06 | 470016 |      1 | 4.412e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9713516469800063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15621011140382152, dt = 0.00026047683147262246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.5%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 203.63 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629458420061739                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1332e+06 | 470016 |      1 | 4.148e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2607869981695368 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 251.04946984000003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.15647058823529414, dt = 0.0003629458420061739
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.23 us   (4.0%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 253.83 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036232795059464235                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1441e+06 | 470016 |      1 | 4.108e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1805660655097645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1568335340773003, dt = 0.00036232795059464235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.2%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 240.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (61.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036177712579221294                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1322e+06 | 470016 |      1 | 4.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1419465061128844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15719586202789496, dt = 0.00036177712579221294
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 259.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000361284960830944                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1350e+06 | 470016 |      1 | 4.141e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.144927571255343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15755763915368717, dt = 0.000361284960830944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 249.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (62.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003608442289573146                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1293e+06 | 470016 |      1 | 4.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1249141278162744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579189241145181, dt = 0.0003608442289573146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 246.14 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036044869713986605                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0222e+06 | 470016 |      1 | 4.598e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8251456973710027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15827976834347543, dt = 0.000249643421230461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (2.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 221.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602005297947261                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1385e+06 | 470016 |      1 | 4.128e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.17688381367826 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 255.18880037000002 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.1585294117647059, dt = 0.0003602005297947261
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.32 us   (5.5%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 248.86 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598693531901037                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1334e+06 | 470016 |      1 | 4.147e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1269885121008483 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1588896122945006, dt = 0.0003598693531901037
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.3%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 219.46 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595704706022362                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1339e+06 | 470016 |      1 | 4.145e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.125564873766159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1592494816476907, dt = 0.0003595704706022362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.5%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.5%)
   LB compute        : 211.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035930018707018725                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1271e+06 | 470016 |      1 | 4.170e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1040599234247668 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15960905211829293, dt = 0.00035930018707018725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.3%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 237.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035905529670338126                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0453e+06 | 470016 |      1 | 4.496e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8767069342473786 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15996835230536313, dt = 0.00035905529670338126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.3%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 237.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035883300418245486                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1321e+06 | 470016 |      1 | 4.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.113357588393141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1603274076020665, dt = 0.00026082769205115763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.1%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 252.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586851845332235                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1304e+06 | 470016 |      1 | 4.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2582094974865523 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 259.33214857900003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.16058823529411767, dt = 0.0003586851845332235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.93 us   (4.0%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 681.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 246.79 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (62.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584962197671069                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1157e+06 | 470016 |      1 | 4.213e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0651129506062715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609469204786509, dt = 0.0003584962197671069
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 245.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583238712195091                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1152e+06 | 470016 |      1 | 4.215e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0621497223870415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.161305416698418, dt = 0.0003583238712195091
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.6%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 206.25 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (60.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]        :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035816641432414356                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1321e+06 | 470016 |      1 | 4.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.107136905676709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1616637405696375, dt = 0.00035816641432414356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 245.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (58.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580223280445673                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0650e+06 | 470016 |      1 | 4.413e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.921631358634487 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202190698396166, dt = 0.0003580223280445673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.5%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 206.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578902686785417                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1026e+06 | 470016 |      1 | 4.263e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.023456907543709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16237992931200623, dt = 0.00026712951152318976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 251.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.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]        :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577993085001448                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1396e+06 | 470016 |      1 | 4.124e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3316667795852166 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 263.48615157200004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.16264705882352942, dt = 0.0003577993085001448
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.20 us   (3.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 267.45 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576854360995185                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1458e+06 | 470016 |      1 | 4.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1400057539593367 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16300485813202956, dt = 0.0003576854360995185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.1%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 252.49 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575806448724974                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1368e+06 | 470016 |      1 | 4.135e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1143158884191005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16336254356812907, dt = 0.0003575806448724974
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574840777970378                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1433e+06 | 470016 |      1 | 4.111e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1313654525243395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16372012421300156, dt = 0.0003574840777970378
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.1%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 256.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.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]        :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573949721620774                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1314e+06 | 470016 |      1 | 4.154e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0978779971540376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1640776082907986, dt = 0.0003573949721620774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 245.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035731264814888535                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1425e+06 | 470016 |      1 | 4.114e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1275501151195932 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16443500326296068, dt = 0.0002708790899805247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.7%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 214.98 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035725463681388975                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1285e+06 | 470016 |      1 | 4.165e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3414372882639096 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 267.583561974 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.1647058823529412, dt = 0.00035725463681388975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.06 us   (4.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 245.49 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718278392328045                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1286e+06 | 470016 |      1 | 4.165e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.08823163658735 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16506313698975508, dt = 0.00035718278392328045
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 240.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571162010310471                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1377e+06 | 470016 |      1 | 4.131e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.112417018057593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16542031977367835, dt = 0.0003571162010310471
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.5%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 213.13 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705444747837704                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0337e+06 | 470016 |      1 | 4.547e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.827520131523931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1657774359747094, dt = 0.00035705444747837704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.4%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 224.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569971727909844                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1356e+06 | 470016 |      1 | 4.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1054975307621993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16613449042218778, dt = 0.0003569971727909844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.4%)
   patch tree reduce : 1.43 us    (0.6%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 217.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (63.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035694427923975094                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1403e+06 | 470016 |      1 | 4.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1180463132859417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16649148759497875, dt = 0.0002732182873741995
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.0%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 259.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035690669376241307                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1345e+06 | 470016 |      1 | 4.143e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.374028029992473 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 271.712863409 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.16676470588235295, dt = 0.00035690669376241307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.83 us   (3.9%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 254.93 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568606613162144                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1234e+06 | 470016 |      1 | 4.184e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0711219327335924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16712161257611538, dt = 0.0003568606613162144
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568180940196606                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1340e+06 | 470016 |      1 | 4.145e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.099655055605345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1674784732374316, dt = 0.0003568180940196606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.4%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 215.60 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (56.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356778718214528                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1350e+06 | 470016 |      1 | 4.141e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.102070069798273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16783529133145125, dt = 0.000356778718214528
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 260.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567422858910965                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1280e+06 | 470016 |      1 | 4.167e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.082551743460536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16819207004966577, dt = 0.0003567422858910965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.3%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 241.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567085719749891                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0624e+06 | 470016 |      1 | 4.424e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9028491602725373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16854881233555688, dt = 0.0002747170762078255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.9%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 262.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (66.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035668443225308913                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1402e+06 | 470016 |      1 | 4.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3991345272961264 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 275.84028336 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.1688235294117647, dt = 0.00035668443225308913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.15 us   (3.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 258.52 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035665503421014935                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1392e+06 | 470016 |      1 | 4.126e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1122832203013235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1691802138440178, dt = 0.00035665503421014935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 254.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662783240945385                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1463e+06 | 470016 |      1 | 4.100e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.131267765235779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16953686887822794, dt = 0.00035662783240945385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (2.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.4%)
   LB compute        : 248.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035660266888926003                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0877e+06 | 470016 |      1 | 4.321e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.97096083887955 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1698934967106374, dt = 0.00035660266888926003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.9%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 274.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035657938402332653                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1210e+06 | 470016 |      1 | 4.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0618944732591973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17025009937952665, dt = 0.00035657938402332653
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.2%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 248.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035655769259100285                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1427e+06 | 470016 |      1 | 4.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.120920464149481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17060667876354998, dt = 0.00027567417762650037
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 278.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565419976270847                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1374e+06 | 470016 |      1 | 4.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.401602992575702 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 279.966740674 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.17088235294117649, dt = 0.0003565419976270847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.94 us   (4.1%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 240.31 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565228769558284                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1658e+06 | 470016 |      1 | 4.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1836207473220384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17123889493880357, dt = 0.0003565228769558284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 247.36 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565050804303123                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1328e+06 | 470016 |      1 | 4.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0933404040996915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1715954178157594, dt = 0.0003565050804303123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 282.07 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564885133418267                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1252e+06 | 470016 |      1 | 4.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0725417893044384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1719519228961897, dt = 0.0003564885133418267
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 255.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.2%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647308830242126                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1355e+06 | 470016 |      1 | 4.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.100500437307078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17230841140953154, dt = 0.00035647308830242126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.9%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 257.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356458727814642                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1292e+06 | 470016 |      1 | 4.162e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0831906999045153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17266488449783396, dt = 0.00027629197275427786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.4%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 221.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (56.3%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035644831143355113                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1127e+06 | 470016 |      1 | 4.224e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3547511750232046 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 284.080135311 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.17294117647058824, dt = 0.00035644831143355113
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (4.2%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 246.16 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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]       :  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

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  51584              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651419697792084                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8325e+05 | 412672 |      1 | 4.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7464857978437545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1732976247820218, dt = 0.0003651419697792084
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 51584.0 min = 51584.0 factor = 1
 - strategy "round robin" : max = 49004.8 min = 49004.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 51584
    max = 51584
    avg = 51584
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (2.0%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 243.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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]       :  6272

 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

Will refine      1024    blocks


Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  56960              [AMR Grid][rank=0]
Info: cfl dt = 0.00036428703496766784                                    [amr::basegodunov][rank=0]
Info: Timestep 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.2068e+06 | 455680 |      1 | 3.776e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4814159208405804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.173662766751801, dt = 0.00036428703496766784
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.1%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 218.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (61.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036353009534451384                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1346e+06 | 455680 |      1 | 4.016e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2653240338142733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17402705378676867, dt = 0.00036353009534451384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.5%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 213.45 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036285793567832953                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1269e+06 | 455680 |      1 | 4.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.236545222316322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17439058388211318, dt = 0.00036285793567832953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 267.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622595620458889                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1304e+06 | 455680 |      1 | 4.031e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.240430902946435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1747534418177915, dt = 0.0002465581822085061
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.9%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 257.44 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (59.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036189320965216                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0462e+06 | 455680 |      1 | 4.356e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0378024395151555 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 288.204271549 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.17500000000000002, dt = 0.00036189320965216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.94 us   (3.7%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 269.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036139796529570877                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1316e+06 | 455680 |      1 | 4.027e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2353085487646362 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17536189320965218, dt = 0.00036139796529570877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.3%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.6%)
   LB compute        : 218.49 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609543182243036                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1224e+06 | 455680 |      1 | 4.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.204703118622364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1757232911749479, dt = 0.0003609543182243036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 246.72 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605560092834651                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0955e+06 | 455680 |      1 | 4.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1238844210043846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1760842454931722, dt = 0.0003605560092834651
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.4%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 228.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (66.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036019762948516043                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1023e+06 | 455680 |      1 | 4.134e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.140000177563338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17644480150245567, dt = 0.00036019762948516043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.5%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 231.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035987449194900377                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1399e+06 | 455680 |      1 | 3.997e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2438340802834893 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17680499913194084, dt = 0.0002538243974709309
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.3%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 250.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596671619088124                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1334e+06 | 455680 |      1 | 4.021e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.27273425723644 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 292.231696235 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.17705882352941177, dt = 0.0003596671619088124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.73 us   (3.8%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 256.43 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035939483686571867                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1295e+06 | 455680 |      1 | 4.034e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2094697979596787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17741849069132057, dt = 0.00035939483686571867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 256.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (57.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035914793717260063                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1171e+06 | 455680 |      1 | 4.079e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1717077134448757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1777778855281863, dt = 0.00035914793717260063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.0%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 255.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (61.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589236614024589                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1245e+06 | 455680 |      1 | 4.052e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.190692860812869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1781370334653589, dt = 0.0003589236614024589
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.3%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 217.04 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (56.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587195683503803                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1384e+06 | 455680 |      1 | 4.003e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2279130234985063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17849595712676136, dt = 0.0003587195683503803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.5%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 211.20 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.9%)
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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358533516997394                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1225e+06 | 455680 |      1 | 4.059e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.181226659877197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17885467669511174, dt = 0.00026297036371181193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.4%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 212.06 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584081882799078                                     [amr::basegodunov][rank=0]
Info: Timestep 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.8733e+05 | 455680 |      1 | 4.615e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.05120887347253 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 296.50286177000004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.17911764705882355, dt = 0.0003584081882799078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.72 us   (4.1%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 259.96 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582490059943762                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1158e+06 | 455680 |      1 | 4.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1595075481061046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17947605524710344, dt = 0.0003582490059943762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 245.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (60.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581032459683374                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1178e+06 | 455680 |      1 | 4.077e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1636340897831987 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17983430425309782, dt = 0.0003581032459683374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 241.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (56.0%)
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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579695720837707                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1183e+06 | 455680 |      1 | 4.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.163938272775708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18019240749906615, dt = 0.0003579695720837707
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.0%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 264.92 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578468020468122                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1200e+06 | 455680 |      1 | 4.068e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.167560305291497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18055037707114993, dt = 0.0003578468020468122
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 265.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (62.0%)
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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035773388784683137                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1155e+06 | 455680 |      1 | 4.085e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1536182158952943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18090822387319674, dt = 0.0002682467150385559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 245.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (54.7%)
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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035765550775255627                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1206e+06 | 455680 |      1 | 4.066e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3748380389901076 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 300.554775402 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.1811764705882353, dt = 0.00035765550775255627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.75 us   (4.0%)
   patch tree reduce : 1.38 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 246.15 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035755762737939414                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1320e+06 | 455680 |      1 | 4.025e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1985984174631934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18153412609598785, dt = 0.00035755762737939414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.1%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 250.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (58.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574672875513213                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1180e+06 | 455680 |      1 | 4.076e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.158128071468934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18189168372336725, dt = 0.0003574672875513213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.4%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 238.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035738381057763975                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1285e+06 | 455680 |      1 | 4.038e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.187089464933332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18224915101091857, dt = 0.00035738381057763975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.3%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 222.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730659080085973                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0543e+06 | 455680 |      1 | 4.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.976622279312447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18260653482149622, dt = 0.00035730659080085973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.4%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 204.84 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (61.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723508602233565                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0038e+06 | 455680 |      1 | 4.540e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8335523311797353 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18296384141229707, dt = 0.000271452705350006
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 251.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571844803581959                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1050e+06 | 455680 |      1 | 4.124e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3698077944545144 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 304.68051571800004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.18323529411764708, dt = 0.0003571844803581959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.95 us   (4.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 241.74 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571218651362737                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0249e+06 | 455680 |      1 | 4.446e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8920878229276954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1835924785980053, dt = 0.0003571218651362737
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.3%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 232.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035706374076807765                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1254e+06 | 455680 |      1 | 4.049e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1750365342709026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18394960046314157, dt = 0.00035706374076807765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (2.3%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 214.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700974418419797                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0379e+06 | 455680 |      1 | 4.391e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.927735291269649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18430666420390965, dt = 0.00035700974418419797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.6%)
   patch tree reduce : 1.72 us    (0.8%)
   gen split merge   : 1.20 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 209.39 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (62.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035695966375850666                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0712e+06 | 455680 |      1 | 4.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0211773321974733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18466367394809385, dt = 0.00035695966375850666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.5%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 212.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035691334836295837                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1246e+06 | 455680 |      1 | 4.052e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.171440367807389 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18502063361185236, dt = 0.00027348403520646714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.5%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.5%)
   LB compute        : 209.10 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (59.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568803594310766                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0130e+06 | 455680 |      1 | 4.498e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.18873558706127 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 308.868052476 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.18529411764705883, dt = 0.0003568803594310766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.77 us   (4.3%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 540.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 245.68 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035683996692522155                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0899e+06 | 455680 |      1 | 4.181e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0728764879793777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1856509980064899, dt = 0.00035683996692522155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.4%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 217.00 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680257625689195                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1256e+06 | 455680 |      1 | 4.048e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.17332840951433 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18600783797341514, dt = 0.00035680257625689195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.4%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 216.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567679580736471                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0194e+06 | 455680 |      1 | 4.470e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8735269590013854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18636464054967203, dt = 0.0003567679580736471
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.5%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 205.03 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (61.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035673590384718563                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1310e+06 | 455680 |      1 | 4.029e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.187916954515715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18672140850774568, dt = 0.00035673590384718563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.8%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 273.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567062237068035                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1398e+06 | 455680 |      1 | 3.998e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.212431990830067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18707814441159287, dt = 0.0002747967648777383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.0%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 256.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (60.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356684954845134                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1197e+06 | 455680 |      1 | 4.069e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.430943887466501 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 312.986304241 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.1873529411764706, dt = 0.000356684954845134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.11 us   (3.9%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 245.58 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 16.33 us   (5.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566590570084775                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1293e+06 | 455680 |      1 | 4.035e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1824026810498793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18770962613131575, dt = 0.0003566590570084775
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.4%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 215.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (61.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035663509003698547                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1246e+06 | 455680 |      1 | 4.052e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1686600721113054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18806628518832424, dt = 0.00035663509003698547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 235.22 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566128821227835                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1260e+06 | 455680 |      1 | 4.047e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1726325267700424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18842292027836122, dt = 0.0003566128821227835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 263.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565921893500573                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1390e+06 | 455680 |      1 | 4.001e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2089921032341193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.188779533160484, dt = 0.0003565921893500573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.4%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 239.19 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565729131277972                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1313e+06 | 455680 |      1 | 4.028e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.187207496120412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18913612534983404, dt = 0.0002756393560483239
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 246.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (57.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035655896785193806                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0062e+06 | 455680 |      1 | 4.529e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1910877432394815 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 317.071574784 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
amr::Godunov: t = 0.18941176470588236, dt = 0.00035655896785193806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.73 us   (4.2%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 229.42 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565419852701496                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0785e+06 | 455680 |      1 | 4.225e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0380768143554397 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1897683236737343, dt = 0.0003565419852701496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.5%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 214.72 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565261902292387                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7323e+05 | 455680 |      1 | 4.682e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.741364596517119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19012486565900447, dt = 0.0003565261902292387
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.2%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 230.83 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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]       :  8576

 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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651151145974777                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1322e+06 | 455680 |      1 | 4.025e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1890084262133818 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1904813918492337, dt = 0.00035651151145974777
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.1%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 256.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (62.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 = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649788250687904                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0994e+06 | 455680 |      1 | 4.145e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0966187895537463 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19083790336069345, dt = 0.00035649788250687904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.3%)
   patch tree reduce : 1.99 us    (0.9%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 211.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (60.0%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16768

 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

Will refine      1280    blocks


Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  58752              [AMR Grid][rank=0]
Info: cfl dt = 0.00036503843339807425                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1253e+06 | 470016 |      1 | 4.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0726291021237095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19119440124320033, dt = 0.0002761869920938076
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.1%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 238.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.2%)
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]        :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003643988903917916                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1243e+06 | 470016 |      1 | 4.180e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.378422831693887 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 321.23858100900003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.19147058823529414, dt = 0.0003643988903917916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.07 us   (3.6%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 284.05 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036363241415620636                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1135e+06 | 470016 |      1 | 4.221e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.107856388240717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19183498712568595, dt = 0.00036363241415620636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.1%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 245.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362952288069174                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0589e+06 | 470016 |      1 | 4.439e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.949298778972266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19219861953984216, dt = 0.000362952288069174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.3%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 237.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (61.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623473234524282                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0260e+06 | 470016 |      1 | 4.581e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8521246392678936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19256157182791134, dt = 0.0003623473234524282
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.3%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 234.54 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (60.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003618079644105955                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1227e+06 | 470016 |      1 | 4.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1157698420782283 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19292391915136375, dt = 0.0003618079644105955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003613260186657401                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1127e+06 | 470016 |      1 | 4.224e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0834970496684546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19328572711577435, dt = 0.0002436846489315414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 238.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036103264122042675                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1034e+06 | 470016 |      1 | 4.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.05953106701783 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 325.51656212700004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.1935294117647059, dt = 0.00036103264122042675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.39 us   (4.0%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 259.79 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036063121175524424                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1170e+06 | 470016 |      1 | 4.208e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0889269395213326 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19389044440592632, dt = 0.00036063121175524424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.4%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 217.29 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602704785537412                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1329e+06 | 470016 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.129386669672688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19425107561768157, dt = 0.0003602704785537412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003599456550338432                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1427e+06 | 470016 |      1 | 4.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.15328504986418 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19461134609623532, dt = 0.0003599456550338432
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.6%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 226.96 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596525804674648                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1494e+06 | 470016 |      1 | 4.089e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.168860849544368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19497129175126915, dt = 0.0003596525804674648
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 256.36 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035938763164482024                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0911e+06 | 470016 |      1 | 4.308e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0056237838644018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19533094433173662, dt = 0.0002572909623810571
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.1%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 252.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (60.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592147236326228                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1143e+06 | 470016 |      1 | 4.218e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.195868155385678 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 329.716811574 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.19558823529411767, dt = 0.0003592147236326228
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (4.2%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 243.47 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589907589774186                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1397e+06 | 470016 |      1 | 4.124e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.135717995641557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959474500177503, dt = 0.0003589907589774186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.9%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 281.85 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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]       :  15488

 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587872536106563                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1368e+06 | 470016 |      1 | 4.134e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.125842230319979 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1963064407767277, dt = 0.0003587872536106563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.1%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 260.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035860200275160886                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1441e+06 | 470016 |      1 | 4.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1439256964186852 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19666522803033837, dt = 0.00035860200275160886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 249.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584330680658588                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1576e+06 | 470016 |      1 | 4.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1795918207900273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19702383003308999, dt = 0.0003584330680658588
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035827874264192735                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1278e+06 | 470016 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0962082991513666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19738226310115584, dt = 0.0002647957223735897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.9%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 277.09 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358173791640535                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1592e+06 | 470016 |      1 | 4.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3510551919021547 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 333.845890536 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.19764705882352943, dt = 0.000358173791640535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (4.0%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 256.55 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580413289051634                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0062e+06 | 470016 |      1 | 4.671e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.760245131149197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19800523261516997, dt = 0.0003580413289051634
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.4%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 228.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035791976362261333                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1426e+06 | 470016 |      1 | 4.114e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1333912548169405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19836327394407513, dt = 0.00035791976362261333
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 254.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035780801897958346                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1455e+06 | 470016 |      1 | 4.103e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.140404817372472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19872119370769775, dt = 0.00035780801897958346
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 261.43 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577051397707826                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1452e+06 | 470016 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.138383568036972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19907900172667733, dt = 0.0003577051397707826
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.3%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 248.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035761027740352535                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1468e+06 | 470016 |      1 | 4.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1419058047152157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19943670686644813, dt = 0.0002691754864930507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.2%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 242.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.0%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575440107678825                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1226e+06 | 470016 |      1 | 4.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3143956832125894 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 338.02283565600004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.19970588235294118, dt = 0.0003575440107678825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (4.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 250.93 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (74.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035746139951376023                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1430e+06 | 470016 |      1 | 4.112e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.130144110959062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20006342636370905, dt = 0.00035746139951376023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (2.0%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 243.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573849223448223                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0226e+06 | 470016 |      1 | 4.596e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.799735001702914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2004208877632228, dt = 0.0003573849223448223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.3%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 234.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573140274136102                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1362e+06 | 470016 |      1 | 4.137e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1102073783915123 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20077827268556764, dt = 0.0003573140274136102
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 273.07 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035724822102749915                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1391e+06 | 470016 |      1 | 4.126e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1173489819612783 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20113558671298123, dt = 0.00035724822102749915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.9%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 260.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718706087187424                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1428e+06 | 470016 |      1 | 4.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.127137407782747 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20149283493400874, dt = 0.0002718709483442161
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 263.33 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571435415689574                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1438e+06 | 470016 |      1 | 4.109e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3818644352299105 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 342.23672068800005 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.20176470588235296, dt = 0.0003571435415689574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (3.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 269.32 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (74.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570896161465818                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6478e+05 | 470016 |      1 | 4.872e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.639139271341737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20212184942392192, dt = 0.0003570896161465818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.2%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 232.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703935341317136                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1537e+06 | 470016 |      1 | 4.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1555393533820686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2024789390400685, dt = 0.00035703935341317136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569924683390023                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1373e+06 | 470016 |      1 | 4.133e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1102642166605308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20283597839348166, dt = 0.0003569924683390023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 246.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (62.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569487027497917                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1294e+06 | 470016 |      1 | 4.161e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0882471768414814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20319297086182067, dt = 0.0003569487027497917
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.69 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        : 240.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035690782239059616                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0917e+06 | 470016 |      1 | 4.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.98457511916465 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20354991956457047, dt = 0.0002736098471942394
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (2.3%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 216.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (55.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568784003781185                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0969e+06 | 470016 |      1 | 4.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2987743359364234 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 346.70060320000005 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.2038235294117647, dt = 0.0003568784003781185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.30 us   (4.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 701.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 245.75 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568421025401599                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0532e+06 | 470016 |      1 | 4.463e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.878785745010903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20418040781214283, dt = 0.0003568421025401599
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.4%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 235.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568082989583686                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1423e+06 | 470016 |      1 | 4.115e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1221189821984154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.204537249914683, dt = 0.0003568082989583686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (2.2%)
   patch tree reduce : 1.95 us    (0.8%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 227.55 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.4%)
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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567768329430694                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0642e+06 | 470016 |      1 | 4.417e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9083937905527946 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20489405821364137, dt = 0.0003567768329430694
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.4%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 223.43 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (50.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674753305050936                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0893e+06 | 470016 |      1 | 4.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9766447431512746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20525083504658445, dt = 0.00035674753305050936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.4%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 218.61 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (61.8%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035672024256737974                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0429e+06 | 470016 |      1 | 4.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8495924935446535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20560758257963496, dt = 0.00027477036154152645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.5%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 206.46 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670057271305276                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1356e+06 | 470016 |      1 | 4.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3899045925870275 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 350.990712931 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.2058823529411765, dt = 0.00035670057271305276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (4.2%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 243.19 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566764911939538                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1416e+06 | 470016 |      1 | 4.117e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.118900746607927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20623905351388955, dt = 0.0003566764911939538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.3%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 240.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (59.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566540504885584                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1385e+06 | 470016 |      1 | 4.128e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.110196377569362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2065957300050835, dt = 0.0003566540504885584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.2%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 256.54 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (57.5%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566331375876189                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0631e+06 | 470016 |      1 | 4.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.904146112340403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20695238405557206, dt = 0.0003566331375876189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.2%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 237.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (60.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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035661363306978706                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0423e+06 | 470016 |      1 | 4.509e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.847169839410086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2073090171931597, dt = 0.00035661363306978706
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.19 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 15.78 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565953739655662                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1273e+06 | 470016 |      1 | 4.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0792603394848603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076656308262295, dt = 0.00027554564435874895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 283.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035658205689248756                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1384e+06 | 470016 |      1 | 4.129e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4026190547926114 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 355.255315589 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
amr::Godunov: t = 0.20794117647058824, dt = 0.00035658205689248756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (3.8%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 264.88 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565656956800704                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1362e+06 | 470016 |      1 | 4.137e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1031089809247394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20829775852748073, dt = 0.0003565656956800704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.4%)
   patch tree reduce : 1.54 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 210.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.5%)
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 = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565503079818871                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1253e+06 | 470016 |      1 | 4.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0731290704084206 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2086543242231608, dt = 0.0003565503079818871
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.4%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 218.56 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (60.6%)
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 = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  58752              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651410896943836                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0202e+06 | 470016 |      1 | 4.607e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.786141916712027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20901087453114267, dt = 0.0003651410896943836
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 218.07 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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]       :  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 = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  56960              [AMR Grid][rank=0]
Info: cfl dt = 0.00036429765530161297                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0780e+06 | 455680 |      1 | 4.227e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1096622462063825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20937601562083705, dt = 0.00036429765530161297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.1%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.4%)
   LB compute        : 252.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (62.7%)
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 = 56960                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  448 new block count =  56512               [AMR Grid][rank=0]
Info: cfl dt = 0.00036355071530664977                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0372e+06 | 452096 |      1 | 4.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.00872536219933 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20974031327613865, dt = 0.0002596867238613687
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     : 4.96 us    (2.1%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 215.46 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036307334352549646                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0087e+06 | 452096 |      1 | 4.482e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085753411480473 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 359.565101089 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.21000000000000002, dt = 0.00036307334352549646
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     : 11.46 us   (3.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 270.90 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003624624494895382                                     [amr::basegodunov][rank=0]
Info: Timestep 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.6117e+05 | 452096 |      1 | 4.704e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7788456853027106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21036307334352553, dt = 0.0003624624494895382
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.23 us    (2.2%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 260.76 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003619176729462498                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1201e+06 | 452096 |      1 | 4.036e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2327823096449397 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21072553579301506, dt = 0.0003619176729462498
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     : 5.80 us    (2.3%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 237.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036143073848042534                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1184e+06 | 452096 |      1 | 4.042e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.223140359202593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2110874534659613, dt = 0.00036143073848042534
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     : 5.85 us    (2.5%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 215.80 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036099453388968296                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1269e+06 | 452096 |      1 | 4.012e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.243267824847323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21144888420444172, dt = 0.00036099453388968296
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     : 5.99 us    (2.5%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 220.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036060292733187363                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1247e+06 | 452096 |      1 | 4.020e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.232966646117577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118098787383314, dt = 0.0002489447910803688
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     : 5.84 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 251.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036035792425600545                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1141e+06 | 452096 |      1 | 4.058e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.20842454954973 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 363.708200651 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.21205882352941177, dt = 0.00036035792425600545
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     : 11.25 us   (3.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 272.03 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036002977651974287                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1298e+06 | 452096 |      1 | 4.002e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.241947143922941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21241918145366778, dt = 0.00036002977651974287
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     : 5.95 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 245.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (60.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035973354260876005                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1230e+06 | 452096 |      1 | 4.026e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.219558908448741 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21277921123018753, dt = 0.00035973354260876005
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.08 us    (2.6%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 216.32 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (60.1%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035946558708958756                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1323e+06 | 452096 |      1 | 3.993e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2435647962378598 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2131389447727963, dt = 0.00035946558708958756
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     : 5.73 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.6%)
   LB compute        : 254.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (57.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592227391912333                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1111e+06 | 452096 |      1 | 4.069e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.180401796249464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21349841035988587, dt = 0.0003592227391912333
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     : 5.61 us    (2.3%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 228.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035900222868384554                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9811e+05 | 452096 |      1 | 4.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.855055540792132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2138576330990771, dt = 0.00026001395974645236
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     : 5.62 us    (2.4%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 214.02 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035885605836993086                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0083e+06 | 452096 |      1 | 4.484e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.087623788049701 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 367.880359008 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.21411764705882355, dt = 0.00035885605836993086
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     : 11.13 us   (3.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 260.99 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586684330791404                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1383e+06 | 452096 |      1 | 3.972e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.25261266822012 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2144765031171935, dt = 0.0003586684330791404
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     : 5.71 us    (2.2%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 237.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584972266265599                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0328e+06 | 452096 |      1 | 4.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9497389418160314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21483517155027262, dt = 0.0003584972266265599
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     : 5.96 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 258.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035834073142195205                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9331e+05 | 452096 |      1 | 4.551e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8355716587460695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151936687768992, dt = 0.00035834073142195205
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     : 5.43 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 244.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (61.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581974416341913                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0317e+06 | 452096 |      1 | 4.382e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.943838463515243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21555200950832115, dt = 0.0003581974416341913
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     : 5.38 us    (2.1%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 239.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035806602706542654                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0797e+06 | 452096 |      1 | 4.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.079621810233382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21591020694995533, dt = 0.00026626363827997324
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     : 5.41 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 243.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (60.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579757802662788                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1378e+06 | 452096 |      1 | 3.973e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4124814440234394 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 372.06151300700003 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
amr::Godunov: t = 0.2161764705882353, dt = 0.0003579757802662788
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     : 11.34 us   (4.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 257.04 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035786228851136164                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0574e+06 | 452096 |      1 | 4.276e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.014099462475432 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21653444636850158, dt = 0.00035786228851136164
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.01 us    (2.6%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 208.10 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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]       :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035775775798856086                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0938e+06 | 452096 |      1 | 4.133e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1167871260506796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21689230865701295, dt = 0.00035775775798856086
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     : 5.58 us    (2.4%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 217.17 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (61.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035766133932704563                                    [amr::basegodunov][rank=0]
Info: Timestep 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.9450e+05 | 452096 |      1 | 4.546e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.833116515402743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2172500664150015, dt = 0.00035766133932704563
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     : 5.83 us    (2.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 211.49 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (61.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 = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035757227628207584                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1249e+06 | 452096 |      1 | 4.019e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2036668866861646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21760772775432854, dt = 0.00035757227628207584
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     : 5.54 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 252.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (57.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]        :  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 = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.00035748989441921296                                    [amr::basegodunov][rank=0]
Info: Timestep 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.6182e+05 | 394752 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1364441407132926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21796530003061063, dt = 0.000269994087036457
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.25 us    (1.8%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 272.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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]       :  9088

 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 = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.0003574319843576691                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0583e+06 | 380416 |      1 | 3.595e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.703875346978842 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 376.16194138900005 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.21823529411764708, dt = 0.0003574319843576691
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     : 11.43 us   (3.9%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 269.35 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035735989453067264                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1228e+06 | 380416 |      1 | 3.388e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7979508711719454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21859272610200475, dt = 0.00035735989453067264
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     : 5.58 us    (2.3%)
   patch tree reduce : 1.82 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 221.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572929909417189                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1209e+06 | 380416 |      1 | 3.394e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7906858706808624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21895008599653543, dt = 0.0003572929909417189
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     : 5.76 us    (2.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 215.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (62.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572308360185619                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1099e+06 | 380416 |      1 | 3.427e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.752790854918586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21930737898747715, dt = 0.0003572308360185619
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     : 5.53 us    (2.3%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 219.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (61.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571730362428718                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1078e+06 | 380416 |      1 | 3.434e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.744979001648498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21966460982349573, dt = 0.0003571730362428718
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     : 5.90 us    (2.4%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 227.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571192371024503                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1098e+06 | 380416 |      1 | 3.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.751281250555843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22002178285973858, dt = 0.00027233478732024974
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     : 5.85 us    (2.4%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 229.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (62.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708084072649457                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1033e+06 | 380416 |      1 | 3.448e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.843431688155084 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 379.635176756 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.22029411764705883, dt = 0.00035708084072649457
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     : 11.15 us   (3.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 272.50 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570333225023759                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0986e+06 | 380416 |      1 | 3.463e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7125263776129396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22065119848778533, dt = 0.0003570333225023759
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     : 5.67 us    (2.1%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 252.29 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (61.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569889947994762                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1119e+06 | 380416 |      1 | 3.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.756711432631597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2210082318102877, dt = 0.0003569889947994762
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     : 5.24 us    (1.9%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 259.01 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035694761444257325                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1044e+06 | 380416 |      1 | 3.444e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7311634563478084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22136522080508717, dt = 0.00035694761444257325
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.20 us    (2.3%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 245.61 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (55.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356908960586125                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1182e+06 | 380416 |      1 | 3.402e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7771862831509706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22172216841952974, dt = 0.000356908960586125
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     : 5.82 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 259.84 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (62.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035687283233434494                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1096e+06 | 380416 |      1 | 3.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.747749728305029 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22207907738011587, dt = 0.0002738637963547452
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     : 5.72 us    (2.5%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 209.39 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035684678890047567                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1096e+06 | 380416 |      1 | 3.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.87583119210004 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 383.117453424 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.22235294117647061, dt = 0.00035684678890047567
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     : 11.39 us   (3.9%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 263.34 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356814706344116                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1138e+06 | 380416 |      1 | 3.416e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761167029555765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22270978796537108, dt = 0.000356814706344116
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     : 5.87 us    (2.5%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 213.74 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035678483389423303                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1144e+06 | 380416 |      1 | 3.414e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7628181208338356 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2230666026717152, dt = 0.00035678483389423303
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     : 5.54 us    (2.3%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 223.11 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (60.4%)
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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035675701045261054                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1186e+06 | 380416 |      1 | 3.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7767141544164047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22342338750560942, dt = 0.00035675701045261054
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     : 5.81 us    (2.5%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 213.98 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (60.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567310886619108                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1085e+06 | 380416 |      1 | 3.432e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.742315641455402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22378014451606204, dt = 0.0003567310886619108
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     : 5.86 us    (2.0%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 270.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (60.6%)
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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567069335567945                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1067e+06 | 380416 |      1 | 3.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7360274364768613 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22413687560472395, dt = 0.00027488910115841536
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     : 5.64 us    (2.0%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 257.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035668950777022033                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0874e+06 | 380416 |      1 | 3.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8287925435850183 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 386.646246862 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.22441176470588237, dt = 0.00035668950777022033
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.93 us   (3.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 287.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566681797067276                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1142e+06 | 380416 |      1 | 3.414e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7610777786939815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22476845421365257, dt = 0.0003566681797067276
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     : 5.66 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 257.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664829991149597                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1198e+06 | 380416 |      1 | 3.397e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.779618611855233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2251251223933593, dt = 0.00035664829991149597
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     : 5.86 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.4%)
   LB compute        : 245.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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]       :  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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566297703732438                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1134e+06 | 380416 |      1 | 3.417e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.757719404132875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2254817706932708, dt = 0.0003566297703732438
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     : 5.29 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 242.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (60.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035661244707659                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0947e+06 | 380416 |      1 | 3.475e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.694395064715859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22583840046364403, dt = 0.00035661244707659
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     : 5.47 us    (2.3%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.4%)
   LB compute        : 215.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (61.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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565962002574987                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1085e+06 | 380416 |      1 | 3.432e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7410045233690012 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2261950129107206, dt = 0.00027557532457353484
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     : 5.77 us    (2.1%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 250.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (60.4%)
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 = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565843706569956                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1103e+06 | 380416 |      1 | 3.426e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8955987195446364 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 390.118647075 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
amr::Godunov: t = 0.22647058823529415, dt = 0.0003565843706569956
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.71 us   (3.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 254.21 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (74.8%)
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 = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.0003652224705545252                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1131e+06 | 394752 |      1 | 3.546e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6198602669907327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22682717260595114, dt = 0.0003652224705545252
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.67 us    (2.2%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 243.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.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]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036437383466397767                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1056e+06 | 394752 |      1 | 3.571e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.682282739721381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22719239507650568, dt = 0.00036437383466397767
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.45 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 239.11 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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]       :  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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036362227028759577                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1035e+06 | 394752 |      1 | 3.577e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6670228928332738 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22755676891116966, dt = 0.00036362227028759577
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.65 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 220.94 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (58.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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629550036019443                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1041e+06 | 394752 |      1 | 3.575e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.661389302931762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22792039118145727, dt = 0.0003629550036019443
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.57 us    (2.2%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 238.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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]       :  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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036236115989197413                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0919e+06 | 394752 |      1 | 3.615e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6143275925773826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22828334618505922, dt = 0.0002460655796466815
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     : 4.89 us    (1.8%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 258.83 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (61.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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003619985480744621                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0985e+06 | 394752 |      1 | 3.594e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.465042503938741 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 393.886885918 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
amr::Godunov: t = 0.2285294117647059, dt = 0.0003619985480744621
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     : 11.52 us   (4.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 252.53 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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]       :  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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036150733270392984                                    [amr::basegodunov][rank=0]
Info: Timestep 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.5761e+05 | 394752 |      1 | 4.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1613671588654246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22889141031278035, dt = 0.00036150733270392984
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.01 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 254.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (63.0%)
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 = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003610675527963242                                     [amr::basegodunov][rank=0]
Info: Timestep 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.1065e+06 | 394752 |      1 | 3.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6480914733462604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22925291764548428, dt = 0.0003610675527963242
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.65 us    (2.5%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 211.92 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  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 = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.00036067298846220573                                    [amr::basegodunov][rank=0]
Info: Timestep 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.1692e+05 | 337408 |      1 | 3.680e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.532364220094847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2296139851982806, dt = 0.00036067298846220573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 227.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (60.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036031825889395075                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0599e+06 | 337408 |      1 | 3.183e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.078674795392393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22997465818674281, dt = 0.00036031825889395075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.2%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 236.60 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (60.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035999869686811344                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0749e+06 | 337408 |      1 | 3.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.132426424299453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23033497644563677, dt = 0.0002532588484808751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.0%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 240.08 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597943850234485                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0821e+06 | 337408 |      1 | 3.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.923969999503293 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 397.418016947 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.23058823529411765, dt = 0.0003597943850234485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.87 us   (3.7%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 272.62 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035952548727775886                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0671e+06 | 337408 |      1 | 3.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.096463512163263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2309480296791411, dt = 0.00035952548727775886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.2%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 242.28 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (58.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359281970109126                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0739e+06 | 337408 |      1 | 3.142e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.119455348452465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23130755516641885, dt = 0.000359281970109126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 263.60 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035906102184972595                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0606e+06 | 337408 |      1 | 3.181e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.065670239097798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23166683713652797, dt = 0.00035906102184972595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 246.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035886017922316183                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0116e+06 | 337408 |      1 | 3.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.87538517997202 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2320258981583777, dt = 0.00035886017922316183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.0%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 256.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035867728125783805                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0682e+06 | 337408 |      1 | 3.159e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.089955683220236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23238475833760086, dt = 0.00026230048592856825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.5%)
   patch tree reduce : 1.57 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 218.41 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358554556645958                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0709e+06 | 337408 |      1 | 3.151e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9970043448320816 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 400.60184663800004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.23264705882352943, dt = 0.000358554556645958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (3.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 267.17 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583982886683592                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0849e+06 | 337408 |      1 | 3.110e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1505999679560714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2330056133801754, dt = 0.0003583982886683592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.2%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 217.78 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (60.5%)
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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582553090782619                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0493e+06 | 337408 |      1 | 3.216e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.012413198912453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23336401166884374, dt = 0.0003582553090782619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.5%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 212.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581242698937466                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0776e+06 | 337408 |      1 | 3.131e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1190664239384605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.233722266977922, dt = 0.0003581242698937466
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 242.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (59.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035800397799027825                                    [amr::basegodunov][rank=0]
Info: Timestep 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.2773e+05 | 337408 |      1 | 3.637e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5449038989166266 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23408039124781574, dt = 0.00035800397799027825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.6%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 212.45 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (59.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578933757288406                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0356e+06 | 337408 |      1 | 3.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9557536582303943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.234438395225806, dt = 0.0002674871271351742
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.3%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.4%)
   LB compute        : 221.26 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (60.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578168614430129                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0696e+06 | 337408 |      1 | 3.154e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0527378187430467 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 403.781702924 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.23470588235294118, dt = 0.0003578168614430129
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.08 us   (3.7%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 273.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577209628199975                                     [amr::basegodunov][rank=0]
Info: Timestep 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.7368e+05 | 337408 |      1 | 3.465e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.717285537141498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2350636992143842, dt = 0.0003577209628199975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.3%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.6%)
   LB compute        : 253.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763242064132796                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0737e+06 | 337408 |      1 | 3.143e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.097910800686193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2354214201772042, dt = 0.00035763242064132796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.4%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.6%)
   LB compute        : 216.26 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (62.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575505523485348                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0816e+06 | 337408 |      1 | 3.120e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.127073127419231 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2357790525978455, dt = 0.0003575505523485348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.0%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 256.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035747474867832223                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0751e+06 | 337408 |      1 | 3.138e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.101588700073114 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23613660315019405, dt = 0.00035747474867832223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.4%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 228.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574044650120424                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0789e+06 | 337408 |      1 | 3.127e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.114966021303798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23649407789887236, dt = 0.000270627983480598
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.3%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 213.59 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 15.26 us   (6.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573548232780311                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0822e+06 | 337408 |      1 | 3.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1247799865789503 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 406.941119144 (s)                                        [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.23676470588235296, dt = 0.0003573548232780311
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.86 us   (3.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 255.16 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572930716890898                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0752e+06 | 337408 |      1 | 3.138e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.099449519167254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.237122060705631, dt = 0.0003572930716890898
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.4%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 206.87 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (61.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723561632443096                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0764e+06 | 337408 |      1 | 3.135e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.103499069265382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23747935377732007, dt = 0.00035723561632443096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.0%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 257.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571820950183654                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0796e+06 | 337408 |      1 | 3.125e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.115009574183388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2378365893936445, dt = 0.0003571820950183654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.5%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 212.68 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (61.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035713218178047795                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0867e+06 | 337408 |      1 | 3.105e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.14127861277486 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23819377148866286, dt = 0.00035713218178047795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.4%)
   patch tree reduce : 1.60 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 210.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (62.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708558274575366                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0847e+06 | 337408 |      1 | 3.110e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.133370978599601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23855090367044335, dt = 0.00027262574132136397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.0%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 242.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.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]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705218521183676                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0384e+06 | 337408 |      1 | 3.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0205730015462637 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 410.09010197500004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.2388235294117647, dt = 0.00035705218521183676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.14 us   (3.7%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 276.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570107913096331                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0855e+06 | 337408 |      1 | 3.108e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.135444740370546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23918058159697655, dt = 0.0003570107913096331
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.1%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 13.65 us   (5.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 232.44 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569720394473747                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0871e+06 | 337408 |      1 | 3.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.141050313296265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23953759238828617, dt = 0.0003569720394473747
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 251.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035693573366384274                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0763e+06 | 337408 |      1 | 3.135e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.099282203262788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23989456442773355, dt = 0.00035693573366384274
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 234.97 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569016961275434                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0808e+06 | 337408 |      1 | 3.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.116080259033507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2402515001613974, dt = 0.0003569016961275434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.2%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 227.70 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035686976437689994                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8627e+05 | 337408 |      1 | 3.807e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3749093500020098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24060840185752494, dt = 0.0002739510836515524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.2%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 229.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (61.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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568466554830153                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0941e+06 | 337408 |      1 | 3.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.19812246919861 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 413.26557823800005 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.2408823529411765, dt = 0.0003568466554830153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.01 us   (3.8%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 289.57 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356818086037165                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0248e+06 | 337408 |      1 | 3.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9017807135219877 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24123919959665951, dt = 0.000356818086037165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.7%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 202.56 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (55.4%)
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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567912407956533                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0943e+06 | 337408 |      1 | 3.083e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1661710672379 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24159601768269667, dt = 0.0003567912407956533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.5%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.6%)
   LB compute        : 218.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (61.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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035676600256239014                                    [amr::basegodunov][rank=0]
Info: Timestep 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.7885e+05 | 337408 |      1 | 3.447e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.726297795220409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24195280892349233, dt = 0.00035676600256239014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 234.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (59.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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674226349673903                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0954e+06 | 337408 |      1 | 3.080e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.169770332854151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24230957492605473, dt = 0.00035674226349673903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.3%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 216.52 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (60.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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035671992423076036                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0014e+06 | 337408 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8116120919311807 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24266631718955148, dt = 0.0002748592810367656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 241.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670371719385003                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0996e+05 | 337408 |      1 | 3.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.668588209680649 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 416.53879149100004 (s)                                   [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
amr::Godunov: t = 0.24294117647058824, dt = 0.00035670371719385003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.11 us   (4.0%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 250.98 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566837987079153                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0403e+06 | 337408 |      1 | 3.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9594182356969085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432978801877821, dt = 0.0003566837987079153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 234.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566651378739906                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0654e+06 | 337408 |      1 | 3.167e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.054396767413255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24365456398649, dt = 0.0003566651378739906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 239.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664765243267107                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0259e+06 | 337408 |      1 | 3.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9038690038686323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.244011229124364, dt = 0.00035664765243267107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.5%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 212.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (61.2%)
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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035663125848357845                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0037e+06 | 337408 |      1 | 3.362e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.819496332154278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24436787677679667, dt = 0.00035663125848357845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.2%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 238.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (56.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]        :  1342

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 = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.00036510949260638913                                    [amr::basegodunov][rank=0]
Info: Timestep 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.0042e+06 | 337408 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8210542927773967 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24472450803528026, dt = 0.00027549196471973736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.2%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 230.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (61.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]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  254

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1778 new block count =  40398              [AMR Grid][rank=0]
Info: cfl dt = 0.0003644768923703571                                     [amr::basegodunov][rank=0]
Info: Timestep 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.0194e+06 | 323184 |      1 | 3.170e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.128300450053919 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 419.76219377 (s)                                         [Godunov][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  92
266 sodanalysis = model.make_analysis_sodtube(sod, (0, 1, 0), t_target, xref, 0.0, 1.0)
267 rho, v, P = sodanalysis.compute_L2_dist()
268 print(rho, v, P)
0.001071729945074644 (0.0, 0.03724582972839467, 0.0) 0.0023396653911319253
273 glob_str = "_to_trash/sod_tube_amr_*.png"
274 ani = show_image_sequence(glob_str)
275
276 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
277 ani.save("_to_trash/sod_tube_amr.gif", writer=writer)
278
279 if shamrock.sys.world_rank() == 0:
280     plt.show()

Total running time of the script: (7 minutes 26.761 seconds)

Estimated memory usage: 2103 MB

Gallery generated by Sphinx-Gallery