Advection test in RAMSES solver#

Compare advection with all slope limiters & Riemann solvers

 8 import os
 9
10 import matplotlib.pyplot as plt
11 import numpy as np
12
13 import shamrock
14
15 # If we use the shamrock executable to run this script instead of the python interpreter,
16 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
17 if not shamrock.sys.is_initialized():
18     shamrock.change_loglevel(1)
19     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Use shamrock documentation style for matplotlib

23 shamrock.matplotlib.set_shamrock_mpl_style()

Setup parameters

27 tmax = 1.0
28 timestamps = 40
29
30 multx = 1
31 multy = 1
32 multz = 1
33
34 sz = 1 << 1
35 base = 16
36
37 positions = [(x, 0, 0) for x in np.linspace(0, 1, 256).tolist()[:-1]]

Simulation

 42 def run_advect(slope_limiter: str, riemann_solver: str, only_last_step: bool = True):
 43     ctx = shamrock.Context()
 44     ctx.pdata_layout_new()
 45
 46     model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
 47
 48     cfg = model.gen_default_config()
 49     scale_fact = 1 / (sz * base * multx)
 50     cfg.set_scale_factor(scale_fact)
 51     cfg.set_eos_gamma(1.00001)
 52
 53     if slope_limiter == "none":
 54         cfg.set_slope_lim_none()
 55     elif slope_limiter == "vanleer":
 56         cfg.set_slope_lim_vanleer_f()
 57     elif slope_limiter == "vanleer_std":
 58         cfg.set_slope_lim_vanleer_std()
 59     elif slope_limiter == "vanleer_sym":
 60         cfg.set_slope_lim_vanleer_sym()
 61     elif slope_limiter == "minmod":
 62         cfg.set_slope_lim_minmod()
 63     else:
 64         raise ValueError(f"Invalid slope limiter: {slope_limiter}")
 65
 66     if riemann_solver == "rusanov":
 67         cfg.set_riemann_solver_rusanov()
 68     elif riemann_solver == "hll":
 69         cfg.set_riemann_solver_hll()
 70     elif riemann_solver == "hllc":
 71         cfg.set_riemann_solver_hllc()
 72     else:
 73         raise ValueError(f"Invalid Riemann solver: {riemann_solver}")
 74
 75     model.set_solver_config(cfg)
 76
 77     model.init_scheduler(int(1e7), 1)
 78     model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
 79
 80     def rho_map(rmin, rmax):
 81         x, y, z = rmin
 82
 83         if x < 0.6 and x > 0.4:
 84             return 2
 85
 86         return 1.0
 87
 88     def rhoe_map(rmin, rmax):
 89         rho = rho_map(rmin, rmax)
 90         return 1.0 * rho
 91
 92     def rhovel_map(rmin, rmax):
 93         x, y, z = rmin
 94         rho = rho_map(rmin, rmax)
 95         return (1 * rho, 0 * rho, 0 * rho)
 96
 97     model.set_field_value_lambda_f64("rho", rho_map)
 98     model.set_field_value_lambda_f64("rhoetot", rhoe_map)
 99     model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
100
101     results = []
102
103     def analysis(iplot: int):
104         rho_vals = model.render_slice("rho", "f64", positions)
105         results.append(rho_vals)
106
107     if only_last_step:
108         model.evolve_until(tmax)
109         analysis(timestamps)
110     else:
111         dt_evolve = tmax / timestamps
112
113         for i in range(timestamps + 1):
114             model.evolve_until(dt_evolve * i)
115             analysis(i)
116
117     return results
121 data = {}
122 data["none_rusanov"] = run_advect("none", "rusanov")
123 data["none_hll"] = run_advect("none", "hll")
124 data["none_hllc"] = run_advect("none", "hllc")
125 data["vanleer_sym_rusanov"] = run_advect("vanleer_sym", "rusanov")
126 data["vanleer_sym_hll"] = run_advect("vanleer_sym", "hll")
127 data["vanleer_sym_hllc"] = run_advect("vanleer_sym", "hllc")
128 data["minmod_rusanov"] = run_advect("minmod", "rusanov")
129 data["minmod_hll"] = run_advect("minmod", "hll")
130 data["minmod_hllc"] = run_advect("minmod", "hllc", only_last_step=False)
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  3.75 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (59.4%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (0.2%)
   patch tree reduce : 951.00 ns  (0.1%)
   gen split merge   : 4.86 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 773.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.36 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 406.63 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1.98 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9159e+05 | 32768 |      1 | 8.368e-02 | 0.0% |   1.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.51 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 362.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (65.5%)
Info: cfl dt = 0.009354078154867489                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3279e+05 | 32768 |      1 | 7.571e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.76358572805964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
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.84 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 332.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.1%)
Info: cfl dt = 0.009354074277069498                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6386e+05 | 32768 |      1 | 7.064e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.6990466116132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354074277069498
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 367.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (64.3%)
Info: cfl dt = 0.009354072018832286                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5427e+05 | 32768 |      1 | 7.213e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.84040275478606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806223596071778, dt = 0.009354072018832286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 359.59 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.5%)
Info: cfl dt = 0.009354070483930324                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5869e+05 | 32768 |      1 | 7.144e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.3790679259312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741630797955007, dt = 0.009354070483930324
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.97 us    (1.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 389.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (68.2%)
Info: cfl dt = 0.009354067490108805                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6544e+05 | 32768 |      1 | 7.040e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.315702094122 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046770378463480394, dt = 0.009354067490108805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 391.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (68.6%)
Info: cfl dt = 0.00935406578598996                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3734e+05 | 32768 |      1 | 7.493e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.43655626103384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0561244459535892, dt = 0.00935406578598996
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.95 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 375.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Info: cfl dt = 0.009354065143266508                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6304e+05 | 32768 |      1 | 7.077e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.8496973282628 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547851173957916, dt = 0.009354065143266508
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 315.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.0%)
Info: cfl dt = 0.009354062533017425                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5474e+05 | 32768 |      1 | 9.237e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.554338669811 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483257688284567, dt = 0.009354062533017425
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.84 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 387.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Info: cfl dt = 0.009354061015738298                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4517e+05 | 32768 |      1 | 9.493e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.717883789301 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866394158631, dt = 0.009354061015738298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 319.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
Info: cfl dt = 0.009354060470775567                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9847e+05 | 32768 |      1 | 1.098e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.72381218218425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935407004316014, dt = 0.009354060470775567
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.90 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 307.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (65.2%)
Info: cfl dt = 0.009354058471759078                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4169e+05 | 32768 |      1 | 9.590e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.14190291616507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289476090237697, dt = 0.009354058471759078
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.47 us    (1.5%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 335.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (68.7%)
Info: cfl dt = 0.009354057020883638                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4332e+05 | 32768 |      1 | 7.391e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.58578441094016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224881937413604, dt = 0.009354057020883638
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.49 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 326.35 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.0%)
Info: cfl dt = 0.009354056461091628                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4302e+05 | 32768 |      1 | 7.396e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.27839224613876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160287639501968, dt = 0.009354056461091628
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (0.9%)
   patch tree reduce : 1.68 us    (0.2%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.2%)
   LB compute        : 682.81 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (65.5%)
Info: cfl dt = 0.009354054972399724                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5190e+05 | 32768 |      1 | 9.312e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.64034108675577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095693285611132, dt = 0.009354054972399724
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.64 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 321.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.8%)
Info: cfl dt = 0.009354053539491454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4354e+05 | 32768 |      1 | 9.538e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.0485945100147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031098782851104, dt = 0.009354053539491454
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     : 4.98 us    (1.5%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 306.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.8%)
Info: cfl dt = 0.009354052941923994                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3652e+05 | 32768 |      1 | 9.737e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.8256134863375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496650413680025, dt = 0.009354052941923994
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.95 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 311.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.4%)
Info: cfl dt = 0.009354051876831915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3606e+05 | 32768 |      1 | 9.751e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.36269124122464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901909430992647, dt = 0.009354051876831915
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.64 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 339.24 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.3%)
Info: cfl dt = 0.009354050442380238                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4716e+05 | 32768 |      1 | 9.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.76191261815035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683731461867584, dt = 0.009354050442380238
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.21 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 341.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.1%)
Info: cfl dt = 0.0093540498030328                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3972e+05 | 32768 |      1 | 9.646e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.12078622634624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772719662913863, dt = 0.0093540498030328
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     : 4.65 us    (1.3%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 337.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (63.6%)
Info: cfl dt = 0.0093540490971823                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4002e+05 | 32768 |      1 | 9.637e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.4244022655734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708124643217144, dt = 0.0093540490971823
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.76 us    (1.8%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 307.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.1%)
Info: cfl dt = 0.009354047654143367                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3929e+05 | 32768 |      1 | 9.658e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.67881889859717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643529552935374, dt = 0.009354047654143367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 312.03 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.6%)
Info: cfl dt = 0.009354046975370896                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4075e+05 | 32768 |      1 | 9.616e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.1813182895132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057893431834971, dt = 0.009354046975370896
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.84 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 307.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.4%)
Info: cfl dt = 0.009354046578103365                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3752e+05 | 32768 |      1 | 9.708e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.8614723784287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.215143390158868, dt = 0.009354046578103365
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.51 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 335.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
Info: cfl dt = 0.009354045124655198                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2962e+05 | 32768 |      1 | 9.941e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.7419133941249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449743673697137, dt = 0.009354045124655198
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.72 us    (1.8%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 299.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (64.7%)
Info: cfl dt = 0.009354044410337435                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4063e+05 | 32768 |      1 | 9.620e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.0583942282631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385148186162658, dt = 0.009354044410337435
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.72 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 320.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.4%)
Info: cfl dt = 0.009354044281010044                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3028e+05 | 32768 |      1 | 9.921e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.41563904998543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.243205526271964, dt = 0.009354044281010044
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 344.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (69.8%)
Info: cfl dt = 0.009354042817278804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3144e+05 | 32768 |      1 | 9.886e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.613471262904 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25255957055297407, dt = 0.009354042817278804
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.67 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 335.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (71.8%)
Info: cfl dt = 0.009354042071036399                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4156e+05 | 32768 |      1 | 9.594e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.0055599933845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619136133702529, dt = 0.009354042071036399
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 304.76 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (61.0%)
Info: cfl dt = 0.00935404202896072                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4964e+05 | 32768 |      1 | 9.372e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.3140363678561 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712676554412893, dt = 0.00935404202896072
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 305.73 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (61.0%)
Info: cfl dt = 0.00935404070347925                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4772e+05 | 32768 |      1 | 9.424e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.34010609750663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062169747025, dt = 0.00935404070347925
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.70 us    (1.5%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 352.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (66.1%)
Info: cfl dt = 0.009354039928131318                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1867e+05 | 32768 |      1 | 1.028e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.485498469937 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997573817372924, dt = 0.009354039928131318
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.71 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 368.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.8%)
Info: cfl dt = 0.00935403984528073                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3722e+05 | 32768 |      1 | 9.717e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.55236689492176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932977810186057, dt = 0.00935403984528073
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.57 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 340.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.2%)
Info: cfl dt = 0.009354038760118855                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5294e+05 | 32768 |      1 | 9.284e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.7031172319828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086838179471413, dt = 0.009354038760118855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 388.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.1%)
Info: cfl dt = 0.009354037957631                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5422e+05 | 32768 |      1 | 9.251e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.01927371316805 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803785670726015, dt = 0.009354037957631
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.95 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 354.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (67.4%)
Info: cfl dt = 0.009354037835569031                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4479e+05 | 32768 |      1 | 7.367e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.0971550054218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739189466489116, dt = 0.009354037835569031
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.07 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 341.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (62.6%)
Info: cfl dt = 0.00935403696795832                                       [amr::basegodunov][rank=0]
Info: Timestep 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.6792e+05 | 32768 |      1 | 7.003e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 480.8607119470937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367459325004602, dt = 0.00935403696795832
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.73 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 331.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.1%)
Info: cfl dt = 0.009354036139564027                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6674e+05 | 32768 |      1 | 7.021e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.65635026309815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609996946841853, dt = 0.009354036139564027
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.84 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 338.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (9.5%)
Info: cfl dt = 0.009354035979159948                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5240e+05 | 32768 |      1 | 7.243e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.9132508425194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545400560798257, dt = 0.009354035979159948
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 322.84 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.9%)
Info: cfl dt = 0.009354035310740345                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5761e+05 | 32768 |      1 | 9.163e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367.50020797993096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480804158714253, dt = 0.009354035310740345
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.79 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 314.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Info: cfl dt = 0.009354034457104234                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8801e+05 | 32768 |      1 | 8.445e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 398.7476096407649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741620768978829, dt = 0.009354034457104234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 280.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Info: cfl dt = 0.009354034258738158                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7938e+05 | 32768 |      1 | 6.835e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 492.6444120727052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38351611135498714, dt = 0.009354034258738158
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.78 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 309.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (61.7%)
Info: cfl dt = 0.009354033774577327                                      [amr::basegodunov][rank=0]
Info: Timestep 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.8103e+05 | 32768 |      1 | 6.812e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 494.3424234680283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928701456137253, dt = 0.009354033774577327
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 309.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.9%)
Info: cfl dt = 0.0093540328959494                                        [amr::basegodunov][rank=0]
Info: Timestep 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.5679e+05 | 32768 |      1 | 7.174e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.42917505336345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022241793883026, dt = 0.0093540328959494
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.2%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 285.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.009354032659677571                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7038e+05 | 32768 |      1 | 6.966e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 483.39691834856154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.411578212284252, dt = 0.009354032659677571
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.89 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 326.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.7%)
Info: cfl dt = 0.0093540323475121                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4925e+05 | 32768 |      1 | 9.382e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.90892526866895 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093224494392956, dt = 0.0093540323475121
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.94 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 294.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.2%)
Info: cfl dt = 0.009354031443856426                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2841e+05 | 32768 |      1 | 7.649e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.2630829148102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43028627729144164, dt = 0.009354031443856426
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.64 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 343.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.2%)
Info: cfl dt = 0.009354031169536195                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7653e+05 | 32768 |      1 | 6.876e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.7142978992681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4396403087352981, dt = 0.009354031169536195
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.36 us    (1.8%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 281.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.0%)
Info: cfl dt = 0.009354031019185824                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7775e+05 | 32768 |      1 | 6.859e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490.9685369876311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489943399048343, dt = 0.009354031019185824
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.85 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 271.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
Info: cfl dt = 0.009354030090281436                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6524e+05 | 32768 |      1 | 8.972e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 375.3476939754396 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583483709240201, dt = 0.009354030090281436
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     : 4.50 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 279.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.2%)
Info: cfl dt = 0.009354029777662143                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5283e+05 | 32768 |      1 | 9.287e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.5900135450012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46770240101430155, dt = 0.009354029777662143
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     : 4.72 us    (1.6%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 272.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (60.1%)
Info: cfl dt = 0.009354029780577748                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6481e+05 | 32768 |      1 | 8.982e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 374.90549932552995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4770564307919637, dt = 0.009354029780577748
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.22 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.3%)
   LB compute        : 298.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.1%)
Info: cfl dt = 0.00935402882609473                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5527e+05 | 32768 |      1 | 9.223e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 365.0949901629436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48641046057254145, dt = 0.00935402882609473
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.08 us    (1.6%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 295.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.4%)
Info: cfl dt = 0.009354028474881829                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4700e+05 | 32768 |      1 | 9.443e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.59588933223705 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49576448939863615, dt = 0.009354028474881829
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     : 4.69 us    (1.3%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 329.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.7%)
Info: cfl dt = 0.009354028623796301                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4595e+05 | 32768 |      1 | 9.472e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.51544794794853 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505118517873518, dt = 0.009354028623796301
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.03 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 325.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
Info: cfl dt = 0.009354027643351559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6335e+05 | 32768 |      1 | 9.018e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 373.4004411265077 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144725464973143, dt = 0.009354027643351559
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     : 4.78 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.4%)
Info: cfl dt = 0.009354027253250555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6265e+05 | 32768 |      1 | 9.036e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 372.67872228480354 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238265741406659, dt = 0.009354027253250555
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.14 us    (1.5%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 322.72 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.5%)
Info: cfl dt = 0.009354027460082317                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5749e+05 | 32768 |      1 | 9.166e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367.3827758645502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331806013939164, dt = 0.009354027460082317
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     : 4.78 us    (1.3%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 340.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.0%)
Info: cfl dt = 0.009354026535105765                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6543e+05 | 32768 |      1 | 8.967e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 375.5398303002684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425346288539987, dt = 0.009354026535105765
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     : 4.66 us    (1.3%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 993.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 342.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Info: cfl dt = 0.00935402610585136                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6037e+05 | 32768 |      1 | 9.093e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 370.33558940697384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518886553891045, dt = 0.00935402610585136
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.67 us    (1.8%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.7%)
Info: cfl dt = 0.00935402626236233                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6255e+05 | 32768 |      1 | 9.038e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 372.57588288274144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612426814949558, dt = 0.00935402626236233
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     : 4.54 us    (1.2%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 364.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.9%)
Info: cfl dt = 0.009354025495257013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6719e+05 | 32768 |      1 | 8.924e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 377.3504754116351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705967077573182, dt = 0.009354025495257013
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     : 4.57 us    (1.4%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 307.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.5%)
Info: cfl dt = 0.009354025026631567                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3897e+05 | 32768 |      1 | 9.667e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.3469617368603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799507332525752, dt = 0.009354025026631567
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     : 4.45 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 298.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.1%)
Info: cfl dt = 0.009354025132565651                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3973e+05 | 32768 |      1 | 9.645e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.1264759162808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893047582792067, dt = 0.009354025132565651
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     : 4.68 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 319.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.6%)
Info: cfl dt = 0.009354024518424781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4622e+05 | 32768 |      1 | 9.464e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.8019413950346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986587834117724, dt = 0.009354024518424781
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.26 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 297.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.1%)
Info: cfl dt = 0.009354024010269163                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5494e+05 | 32768 |      1 | 9.232e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.75638183433415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080128079301972, dt = 0.009354024010269163
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     : 4.48 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 298.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.1%)
Info: cfl dt = 0.009354024065485267                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4975e+05 | 32768 |      1 | 9.369e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.42177240029883 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173668319404664, dt = 0.009354024065485267
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     : 4.82 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 303.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
Info: cfl dt = 0.009354023599843855                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4932e+05 | 32768 |      1 | 9.381e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.9821177460637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267208560059516, dt = 0.009354023599843855
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     : 4.88 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 338.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.4%)
Info: cfl dt = 0.009354023052062932                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4581e+05 | 32768 |      1 | 9.476e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.37791422591874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360748796057955, dt = 0.009354023052062932
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     : 4.83 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 330.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.8%)
Info: cfl dt = 0.009354023056527806                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3916e+05 | 32768 |      1 | 9.661e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.5456912164273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454289026578583, dt = 0.009354023056527806
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     : 4.38 us    (1.3%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
Info: cfl dt = 0.009354022735277166                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4341e+05 | 32768 |      1 | 9.542e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.907429168087 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547829257143861, dt = 0.009354022735277166
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.21 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 298.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.3%)
Info: cfl dt = 0.009354022147841616                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5734e+05 | 32768 |      1 | 9.170e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367.22597339251536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641369484496633, dt = 0.009354022147841616
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     : 4.30 us    (1.5%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 278.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.2%)
Info: cfl dt = 0.009354022101621652                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2615e+05 | 32768 |      1 | 7.689e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.93509679782915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.673490970597505, dt = 0.009354022101621652
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     : 4.33 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 283.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.7%)
Info: cfl dt = 0.009354021920942835                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7527e+05 | 32768 |      1 | 6.895e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 488.4125513629821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828449926991266, dt = 0.009354021920942835
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.28 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 327.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.6%)
Info: cfl dt = 0.009354021293888471                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7590e+05 | 32768 |      1 | 6.886e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.06080638863153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921990146200694, dt = 0.009354021293888471
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     : 27.53 us   (7.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 324.23 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.2%)
Info: cfl dt = 0.00935402119714109                                       [amr::basegodunov][rank=0]
Info: Timestep 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.6956e+05 | 32768 |      1 | 6.978e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.5494393447637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015530359139579, dt = 0.00935402119714109
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     : 4.69 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 293.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.5%)
Info: cfl dt = 0.009354021153452822                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6956e+05 | 32768 |      1 | 6.978e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.551017859694 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710907057111099, dt = 0.009354021153452822
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.16 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 296.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Info: cfl dt = 0.009354020486878245                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6895e+05 | 32768 |      1 | 6.988e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.9184346111256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202610782645519, dt = 0.009354020486878245
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     : 4.52 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.3%)
   LB compute        : 299.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (65.4%)
Info: cfl dt = 0.009354020339843281                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7150e+05 | 32768 |      1 | 6.950e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.54771886494376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296150987514302, dt = 0.009354020339843281
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.08 us    (1.2%)
   patch tree reduce : 1.48 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 406.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.7%)
Info: cfl dt = 0.009354020429761092                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7390e+05 | 32768 |      1 | 6.914e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 487.012658455114 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389691190912734, dt = 0.009354020429761092
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     : 4.66 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 303.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (68.2%)
Info: cfl dt = 0.00935401972382434                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7127e+05 | 32768 |      1 | 8.826e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 381.5406182214857 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483231395210345, dt = 0.00935401972382434
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.53 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.44 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.4%)
Info: cfl dt = 0.009354019526815716                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5223e+05 | 32768 |      1 | 9.303e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.976467986434 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576771592448588, dt = 0.009354019526815716
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.74 us    (1.9%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 289.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.9%)
Info: cfl dt = 0.009354019747119779                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3894e+05 | 32768 |      1 | 9.668e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.3206377802748 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670311787716745, dt = 0.009354019747119779
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.40 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 298.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (64.4%)
Info: cfl dt = 0.009354019002034334                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4146e+05 | 32768 |      1 | 9.597e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.9012096307603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763851985187943, dt = 0.009354019002034334
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.28 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 334.34 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.8%)
Info: cfl dt = 0.009354018755432122                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3826e+05 | 32768 |      1 | 9.687e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.6214211481842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857392175208286, dt = 0.009354018755432122
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 304.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (63.9%)
Info: cfl dt = 0.009354019015772761                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3667e+05 | 32768 |      1 | 9.733e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.9830594928448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950932362762607, dt = 0.009354019015772761
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.42 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 351.41 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.009354018319072373                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4359e+05 | 32768 |      1 | 9.537e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.09395883432944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044472552920334, dt = 0.009354018319072373
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.72 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 315.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (62.2%)
Info: cfl dt = 0.009354018023315354                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4918e+05 | 32768 |      1 | 9.384e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.83733781012296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138012736111058, dt = 0.009354018023315354
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.70 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 311.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (58.8%)
Info: cfl dt = 0.009354018225079646                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5212e+05 | 32768 |      1 | 9.306e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.8626071323524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231552916344211, dt = 0.009354018225079646
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     : 4.75 us    (1.3%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 349.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.0%)
Info: cfl dt = 0.009354017672727356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5325e+05 | 32768 |      1 | 9.276e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.02382363765906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325093098595008, dt = 0.009354017672727356
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.89 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 330.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.2%)
Info: cfl dt = 0.009354017328306107                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5006e+05 | 32768 |      1 | 9.361e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.74566609141857 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418633275322281, dt = 0.009354017328306107
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.86 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 326.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.3%)
Info: cfl dt = 0.00935401747209248                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5166e+05 | 32768 |      1 | 9.318e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.3845758826144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512173448605342, dt = 0.00935401747209248
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.31 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 290.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.5%)
Info: cfl dt = 0.009354017060985922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3309e+05 | 32768 |      1 | 9.838e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.3051571987219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605713623326268, dt = 0.009354017060985922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 290.27 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Info: cfl dt = 0.009354016668436388                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3406e+05 | 32768 |      1 | 9.809e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.30024127281473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699253793936127, dt = 0.009354016668436388
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    (1.9%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 276.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Info: cfl dt = 0.009354016754898005                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3008e+05 | 32768 |      1 | 9.927e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.20970141372675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792793960620491, dt = 0.009354016754898005
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.32 us    (1.8%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 283.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (60.9%)
Info: cfl dt = 0.009354016482009696                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5014e+05 | 32768 |      1 | 9.358e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.83040050703414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886334128169471, dt = 0.009354016482009696
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.45 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 338.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
Info: cfl dt = 0.009354016041907163                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4976e+05 | 32768 |      1 | 9.369e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.4308975478361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979874292989568, dt = 0.009354016041907163
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.32 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 345.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (70.1%)
Info: cfl dt = 0.009354016071743689                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5336e+05 | 32768 |      1 | 9.273e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.1377564731039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073414453408639, dt = 0.009354016071743689
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.3%)
   LB compute        : 305.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (61.7%)
Info: cfl dt = 0.00935401593411606                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4995e+05 | 32768 |      1 | 9.364e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.62936677072696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166954614126076, dt = 0.00935401593411606
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     : 4.89 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 363.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.9%)
Info: cfl dt = 0.00935401544706949                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4824e+05 | 32768 |      1 | 9.410e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.87649344312746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260494773467237, dt = 0.00935401544706949
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     : 4.45 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 298.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (65.4%)
Info: cfl dt = 0.009354015421019697                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5596e+05 | 32768 |      1 | 9.206e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 365.8052798091738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354034927937932, dt = 0.009354015421019697
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     : 4.93 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 344.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.4%)
Info: cfl dt = 0.009354015415762139                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5049e+05 | 32768 |      1 | 9.349e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.1828643546932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447575082148129, dt = 0.009354015415762139
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     : 4.80 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 306.28 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.0%)
Info: cfl dt = 0.009354014882408737                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4075e+05 | 32768 |      1 | 9.616e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.1753738526366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541115236305749, dt = 0.009354014882408737
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.57 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 365.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
Info: cfl dt = 0.009354014801243725                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4339e+05 | 32768 |      1 | 9.543e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.88750526336406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634655385129837, dt = 0.009354014801243725
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.29 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.44 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
Info: cfl dt = 0.009354014925531586                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0475e+05 | 32768 |      1 | 1.075e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.17585734831215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728195533142274, dt = 0.009354014925531586
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.26 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 300.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (57.7%)
Info: cfl dt = 0.00935401434653149                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1428e+05 | 32768 |      1 | 1.043e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.97550067998316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982173568239759, dt = 0.00935401434653149
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 306.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.3%)
Info: cfl dt = 0.009354014211048391                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4420e+05 | 32768 |      1 | 9.520e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.7198801699732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915275825862905, dt = 0.008472417413709521
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     : 4.41 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.1%)
Info: cfl dt = 0.0093540144973483                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9362e+05 | 32768 |      1 | 1.116e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 273.3023279674445 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 20.984758951 (s)                                         [Godunov][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.80 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.50 us    (53.4%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (0.2%)
   patch tree reduce : 851.00 ns  (0.1%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 785.76 us  (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.54 us    (1.1%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 303.14 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 1.65 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.6%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9187e+05 | 32768 |      1 | 1.123e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.94 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 345.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.3%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3306e+05 | 32768 |      1 | 9.838e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.2788180322892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
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.90 us    (1.6%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 343.93 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.4%)
Info: cfl dt = 0.009354070557356715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4897e+05 | 32768 |      1 | 9.390e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.62979403645903 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070557356715
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.91 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 365.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.5%)
Info: cfl dt = 0.009354069063258542                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3966e+05 | 32768 |      1 | 9.647e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.0626176308709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226864329604, dt = 0.009354069063258542
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     : 4.68 us    (1.4%)
   patch tree reduce : 1.06 us    (0.3%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 309.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.9%)
Info: cfl dt = 0.009354065243429733                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4322e+05 | 32768 |      1 | 9.547e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.71535660371995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741629592758815, dt = 0.009354065243429733
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.37 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 318.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (61.0%)
Info: cfl dt = 0.009354063965791116                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3492e+05 | 32768 |      1 | 9.784e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.1851606880932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677036117101788, dt = 0.009354063965791116
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     : 4.95 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 310.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.5%)
Info: cfl dt = 0.00935406293722296                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3669e+05 | 32768 |      1 | 9.732e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.01016082809014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612442513680899, dt = 0.00935406293722296
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     : 4.73 us    (1.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 360.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Info: cfl dt = 0.00935406009155936                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3841e+05 | 32768 |      1 | 9.683e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.7704822174709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547848807403195, dt = 0.00935406009155936
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.16 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 344.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Info: cfl dt = 0.009354058981621798                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3673e+05 | 32768 |      1 | 9.731e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.0445356901729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325481655913, dt = 0.009354058981621798
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     : 4.69 us    (1.1%)
   patch tree reduce : 1.08 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 394.07 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (63.3%)
Info: cfl dt = 0.009354058398246823                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3424e+05 | 32768 |      1 | 9.804e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.48965303757615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866071472131, dt = 0.009354058398246823
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.34 us    (1.6%)
   patch tree reduce : 1.54 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        : 312.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Info: cfl dt = 0.009354055918166097                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3617e+05 | 32768 |      1 | 9.748e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.46764373832224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066554545992, dt = 0.009354055918166097
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.45 us    (1.6%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 315.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.5%)
Info: cfl dt = 0.009354054828410799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3511e+05 | 32768 |      1 | 9.778e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.385013334203 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289472146362602, dt = 0.009354054828410799
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     : 4.52 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 322.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Info: cfl dt = 0.009354054643917838                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3613e+05 | 32768 |      1 | 9.749e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.42827907449833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224877629203682, dt = 0.009354054643917838
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.23 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Info: cfl dt = 0.009354052333709638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3602e+05 | 32768 |      1 | 9.752e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.31857682070296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160283093595466, dt = 0.009354052333709638
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     : 4.82 us    (1.3%)
   patch tree reduce : 1.09 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 343.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.1%)
Info: cfl dt = 0.009354051217037918                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1990e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.755664967247 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568832696643, dt = 0.009354051217037918
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     : 4.88 us    (1.4%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (67.1%)
Info: cfl dt = 0.009354051160740375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2832e+05 | 32768 |      1 | 9.981e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.401005712247 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403109344867022, dt = 0.009354051160740375
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     : 4.46 us    (1.2%)
   patch tree reduce : 1.11 us    (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 339.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.1%)
Info: cfl dt = 0.009354049165896591                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3289e+05 | 32768 |      1 | 9.843e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.09978900960095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966498564744257, dt = 0.009354049165896591
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     : 4.49 us    (1.4%)
   patch tree reduce : 852.00 ns  (0.3%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 293.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.0%)
Info: cfl dt = 0.009354048009338565                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3394e+05 | 32768 |      1 | 9.812e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.1815076951252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901903481333918, dt = 0.009354048009338565
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     : 4.50 us    (1.3%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 333.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
Info: cfl dt = 0.009354047838085631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3188e+05 | 32768 |      1 | 9.873e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.0649959082704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837308282267774, dt = 0.009354047838085631
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     : 4.80 us    (1.3%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 354.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.5%)
Info: cfl dt = 0.009354046323290361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4136e+05 | 32768 |      1 | 9.599e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.8082131888049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772713066076337, dt = 0.009354046323290361
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     : 4.98 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 331.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.0%)
Info: cfl dt = 0.009354045127035065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4492e+05 | 32768 |      1 | 9.500e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.46480309056125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708117698405374, dt = 0.009354045127035065
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     : 4.46 us    (1.3%)
   patch tree reduce : 1.13 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 320.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.2%)
Info: cfl dt = 0.00935404486181552                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4189e+05 | 32768 |      1 | 9.584e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.3488602228038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964352221110888, dt = 0.00935404486181552
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     : 4.42 us    (1.4%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 299.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Info: cfl dt = 0.00935404374999631                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4444e+05 | 32768 |      1 | 9.513e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.9722218590744 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057892669729043, dt = 0.00935404374999631
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     : 4.95 us    (1.4%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 337.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.7%)
Info: cfl dt = 0.009354042518640951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4058e+05 | 32768 |      1 | 9.621e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.00720083653925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514331072290063, dt = 0.009354042518640951
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     : 4.78 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 317.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
Info: cfl dt = 0.009354042176359652                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4045e+05 | 32768 |      1 | 9.625e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.8722039578217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449735324154158, dt = 0.009354042176359652
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     : 4.93 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 290.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.4%)
Info: cfl dt = 0.009354041407396577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4219e+05 | 32768 |      1 | 9.576e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.65900027550117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385139541790123, dt = 0.009354041407396577
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     : 4.53 us    (1.5%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 288.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.7%)
Info: cfl dt = 0.009354040146256508                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4036e+05 | 32768 |      1 | 9.627e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.7784454092943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432054368252978, dt = 0.009354040146256508
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.09 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 327.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.7%)
Info: cfl dt = 0.009354039739735663                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4225e+05 | 32768 |      1 | 9.574e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.723102266287 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525594769715543, dt = 0.009354039739735663
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     : 4.83 us    (1.4%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 329.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (70.1%)
Info: cfl dt = 0.009354039266221074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3451e+05 | 32768 |      1 | 9.796e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.7632789037498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191351671128993, dt = 0.009354039266221074
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.60 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.71 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.8%)
Info: cfl dt = 0.00935403797992317                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3729e+05 | 32768 |      1 | 9.715e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.61805594941296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267555977511, dt = 0.00935403797992317
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     : 4.12 us    (1.3%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 301.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.1%)
Info: cfl dt = 0.009354037518533058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3825e+05 | 32768 |      1 | 9.687e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.61162319140794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806215939574342, dt = 0.009354037518533058
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     : 4.60 us    (1.2%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 355.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.3%)
Info: cfl dt = 0.009354037302899045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+05 | 32768 |      1 | 1.076e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.0465265116001 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2899756314759672, dt = 0.009354037302899045
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     : 4.87 us    (1.6%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.3%)
   LB compute        : 291.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.2%)
Info: cfl dt = 0.009354035994985242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4128e+05 | 32768 |      1 | 9.601e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.7224898893308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932966877886624, dt = 0.009354035994985242
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     : 4.76 us    (1.4%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 327.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.3%)
Info: cfl dt = 0.009354035485396654                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3998e+05 | 32768 |      1 | 9.638e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.3825499985539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086837047738515, dt = 0.009354035485396654
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.05 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 298.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 0.009354035497753904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3438e+05 | 32768 |      1 | 9.800e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.62911009320817 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803774025924814, dt = 0.009354035497753904
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.43 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 331.22 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (69.6%)
Info: cfl dt = 0.009354034170702087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3467e+05 | 32768 |      1 | 9.791e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.9251030813298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739177575700207, dt = 0.009354034170702087
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     : 4.93 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 292.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.5%)
Info: cfl dt = 0.00935403361756402                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4171e+05 | 32768 |      1 | 9.589e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.1643582547825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674580992770414, dt = 0.00935403361756402
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.39 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 314.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Info: cfl dt = 0.009354033829266275                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4087e+05 | 32768 |      1 | 9.613e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.29557120997003 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460998435452682, dt = 0.009354033829266275
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     : 4.30 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 322.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (69.0%)
Info: cfl dt = 0.009354032489412682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3942e+05 | 32768 |      1 | 9.654e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.807894779427 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545387737453443, dt = 0.009354032489412682
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     : 4.85 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.3%)
   LB compute        : 290.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.3%)
Info: cfl dt = 0.009354031895900786                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4248e+05 | 32768 |      1 | 9.568e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.9540656292977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648079098639471, dt = 0.009354031895900786
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.12 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 299.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.1%)
Info: cfl dt = 0.009354032050593227                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3932e+05 | 32768 |      1 | 9.657e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.7067125662386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741619417598479, dt = 0.009354032050593227
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.28 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 331.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.4%)
Info: cfl dt = 0.009354030935966824                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3070e+05 | 32768 |      1 | 9.909e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.8468476395822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835159738104411, dt = 0.009354030935966824
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     : 4.57 us    (1.3%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 331.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
Info: cfl dt = 0.009354030304204465                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4554e+05 | 32768 |      1 | 9.483e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.10076961740685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39287000474640793, dt = 0.009354030304204465
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     : 4.53 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 336.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.4%)
Info: cfl dt = 0.00935403040395369                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4414e+05 | 32768 |      1 | 9.522e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.6621336214155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022240350506124, dt = 0.00935403040395369
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.84 us    (1.9%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 295.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
Info: cfl dt = 0.009354029497301136                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3124e+05 | 32768 |      1 | 9.892e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.4063968164434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115780654545661, dt = 0.009354029497301136
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.46 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 309.19 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.4%)
Info: cfl dt = 0.009354028828673375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3432e+05 | 32768 |      1 | 9.801e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.56890378501345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093209495186723, dt = 0.009354028828673375
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     : 4.68 us    (1.3%)
   patch tree reduce : 1.09 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 344.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
Info: cfl dt = 0.00935402887490641                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3173e+05 | 32768 |      1 | 9.878e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.9042710728501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302861237805406, dt = 0.00935402887490641
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.10 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 305.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.1%)
Info: cfl dt = 0.009354028162104929                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3419e+05 | 32768 |      1 | 9.805e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.4351633473402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.439640152655447, dt = 0.009354028162104929
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     : 4.55 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 304.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.4%)
Info: cfl dt = 0.009354027457488543                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2656e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.59460894011505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899418081755194, dt = 0.009354027457488543
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.65 us    (1.7%)
   patch tree reduce : 1.13 us    (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 307.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.2%)
Info: cfl dt = 0.009354027451208436                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3221e+05 | 32768 |      1 | 9.864e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.402327324459 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834820827504047, dt = 0.009354027451208436
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     : 4.97 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 308.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Info: cfl dt = 0.009354026920548526                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2081e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.68885548291615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677022357262489, dt = 0.009354026920548526
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.56 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 332.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.4%)
Info: cfl dt = 0.00935402618047851                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2053e+05 | 32768 |      1 | 1.022e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.40142551977914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705626264679746, dt = 0.00935402618047851
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.57 us    (1.8%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 295.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (64.8%)
Info: cfl dt = 0.00935402612241469                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2801e+05 | 32768 |      1 | 9.990e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.0872039897974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486410288827276, dt = 0.00935402612241469
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.25 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 297.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.6%)
Info: cfl dt = 0.009354025764058726                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2757e+05 | 32768 |      1 | 1.000e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.63312098313185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957643149496907, dt = 0.009354025764058726
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 307.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.4%)
Info: cfl dt = 0.00935402498884772                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2589e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.9024482907447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051183407137494, dt = 0.00935402498884772
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.09 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 305.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (64.3%)
Info: cfl dt = 0.009354024879560215                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1256e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.2038067338862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144723657025971, dt = 0.009354024879560215
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.67 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 298.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (69.4%)
Info: cfl dt = 0.009354024685131706                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1802e+05 | 32768 |      1 | 1.030e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.8187278482745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238263905821573, dt = 0.009354024685131706
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.65 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 347.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.4%)
Info: cfl dt = 0.009354023874954953                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2372e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.67255739480663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.533180415267289, dt = 0.009354023874954953
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.69 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 314.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (62.3%)
Info: cfl dt = 0.009354023714906021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3751e+05 | 32768 |      1 | 9.709e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.8505907878912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.542534439142244, dt = 0.009354023714906021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 419.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.1%)
Info: cfl dt = 0.0093540236771764                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9081e+05 | 32768 |      1 | 8.385e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 401.6239975486151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55188846285715, dt = 0.0093540236771764
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.76 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 321.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.2%)
Info: cfl dt = 0.009354022832131598                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6879e+05 | 32768 |      1 | 6.990e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.7587296207224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612424865343264, dt = 0.009354022832131598
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.98 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 313.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.4%)
Info: cfl dt = 0.009354022621734464                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4564e+05 | 32768 |      1 | 7.353e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.96778062699656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570596509366458, dt = 0.009354022621734464
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.70 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (61.1%)
Info: cfl dt = 0.009354022734382968                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4862e+05 | 32768 |      1 | 7.304e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.029843557865 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799505319881925, dt = 0.009354022734382968
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 274.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (62.6%)
Info: cfl dt = 0.009354021854531975                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4994e+05 | 32768 |      1 | 7.283e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.3851968630795 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893045547225755, dt = 0.009354021854531975
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.01 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 295.06 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 2.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.4%)
Info: cfl dt = 0.009354021594183467                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5254e+05 | 32768 |      1 | 7.241e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.0573386433568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986585765771074, dt = 0.009354021594183467
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     : 4.58 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 311.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.9%)
Info: cfl dt = 0.009354021851612165                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4368e+05 | 32768 |      1 | 7.385e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.95721145947823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080125981712908, dt = 0.009354021851612165
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.82 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 288.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.7%)
Info: cfl dt = 0.009354020937009575                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5100e+05 | 32768 |      1 | 7.266e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.4812566696232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.617366620022903, dt = 0.009354020937009575
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     : 4.75 us    (1.6%)
   patch tree reduce : 1.04 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 276.75 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.2%)
Info: cfl dt = 0.009354020627111503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4074e+05 | 32768 |      1 | 9.617e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.16904431669616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267206409599125, dt = 0.009354020627111503
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.81 us    (1.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 280.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
Info: cfl dt = 0.00935402092932955                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3402e+05 | 32768 |      1 | 9.810e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.256545799144 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360746615870241, dt = 0.00935402092932955
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.60 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 298.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 0.009354020075014327                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4077e+05 | 32768 |      1 | 9.616e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.1946951190905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454286825163537, dt = 0.009354020075014327
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.57 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 354.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.2%)
Info: cfl dt = 0.009354019715986959                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4345e+05 | 32768 |      1 | 9.541e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.9477713386194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.654782702591368, dt = 0.009354019715986959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.4%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 409.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (63.6%)
Info: cfl dt = 0.00935401995614047                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5203e+05 | 32768 |      1 | 9.308e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.7721155848542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641367223073549, dt = 0.00935401995614047
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.65 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 316.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.2%)
Info: cfl dt = 0.009354019264506987                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4697e+05 | 32768 |      1 | 9.444e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.5657068742043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734907422634954, dt = 0.009354019264506987
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.44 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 365.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.1%)
Info: cfl dt = 0.009354018856797063                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5029e+05 | 32768 |      1 | 9.355e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.97925195726134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828447615280023, dt = 0.009354018856797063
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     : 4.89 us    (1.4%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 344.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.3%)
Info: cfl dt = 0.009354019035518994                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5170e+05 | 32768 |      1 | 9.317e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.4322082419655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921987803847994, dt = 0.009354019035518994
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.18 us    (1.5%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 333.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
Info: cfl dt = 0.009354018501887546                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4479e+05 | 32768 |      1 | 9.504e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.3290846022561 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015527994203185, dt = 0.009354018501887546
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.19 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 271.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.0%)
Info: cfl dt = 0.009354018045972506                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6236e+05 | 32768 |      1 | 7.087e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.149990074184 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710906817922206, dt = 0.009354018045972506
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     : 4.90 us    (1.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 308.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Info: cfl dt = 0.009354018163947393                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6928e+05 | 32768 |      1 | 6.983e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.26476917612246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202608359681785, dt = 0.009354018163947393
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     : 4.66 us    (1.4%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 303.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.1%)
Info: cfl dt = 0.009354017783935142                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7187e+05 | 32768 |      1 | 6.944e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.9194342020066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296148541321259, dt = 0.009354017783935142
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     : 4.66 us    (1.4%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 309.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.7%)
Info: cfl dt = 0.00935401728032475                                       [amr::basegodunov][rank=0]
Info: Timestep 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.7363e+05 | 32768 |      1 | 6.918e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.73296615521645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389688719160611, dt = 0.00935401728032475
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     : 4.70 us    (1.6%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 276.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.1%)
Info: cfl dt = 0.009354017338284074                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7171e+05 | 32768 |      1 | 6.947e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.76251848722455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483228891963858, dt = 0.009354017338284074
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     : 4.58 us    (1.4%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.3%)
   LB compute        : 314.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
Info: cfl dt = 0.009354017107757422                                      [amr::basegodunov][rank=0]
Info: Timestep 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.7030e+05 | 32768 |      1 | 6.967e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 483.3099941637705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576769065346699, dt = 0.009354017107757422
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     : 4.62 us    (1.4%)
   patch tree reduce : 1.07 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 307.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.6%)
Info: cfl dt = 0.009354016556993675                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6297e+05 | 32768 |      1 | 7.078e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.7724472913296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670309236424273, dt = 0.009354016556993675
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.01 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 304.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.6%)
Info: cfl dt = 0.009354016555710908                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5247e+05 | 32768 |      1 | 9.297e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.21983586135707 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.776384940199421, dt = 0.009354016555710908
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     : 4.76 us    (1.6%)
   patch tree reduce : 1.08 us    (0.4%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
Info: cfl dt = 0.009354016470747762                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4595e+05 | 32768 |      1 | 9.472e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.52345511715174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857389567551318, dt = 0.009354016470747762
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.45 us    (1.9%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 275.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (61.7%)
Info: cfl dt = 0.009354015873403622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3163e+05 | 32768 |      1 | 9.881e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.80814042338534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950929732258796, dt = 0.009354015873403622
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     : 4.57 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 272.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (61.6%)
Info: cfl dt = 0.009354015813689248                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2497e+05 | 32768 |      1 | 1.008e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.96165560788364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044469890992832, dt = 0.009354015813689248
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     : 4.76 us    (1.6%)
   patch tree reduce : 972.00 ns  (0.3%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 272.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.2%)
Info: cfl dt = 0.009354015870549008                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5523e+05 | 32768 |      1 | 7.198e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.82168360453386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138010049129725, dt = 0.009354015870549008
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.38 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 343.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.3%)
Info: cfl dt = 0.009354015227226412                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4342e+05 | 32768 |      1 | 7.390e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.6829037545714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231550207835214, dt = 0.009354015227226412
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     : 26.91 us   (7.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 311.79 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.0%)
Info: cfl dt = 0.009354015109923045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5481e+05 | 32768 |      1 | 9.235e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.62883851848176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325090360107479, dt = 0.009354015109923045
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.34 us    (1.4%)
   patch tree reduce : 992.00 ns  (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 333.59 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (71.1%)
Info: cfl dt = 0.00935401530502273                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2414e+05 | 32768 |      1 | 1.011e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.1095624719538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841863051120671, dt = 0.00935401530502273
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.44 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.3%)
   LB compute        : 294.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (60.7%)
Info: cfl dt = 0.009354014616350109                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2730e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.3566275187346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512170664256937, dt = 0.009354014616350109
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     : 4.92 us    (1.4%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 328.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (66.6%)
Info: cfl dt = 0.00935401444232782                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2675e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.79330769622743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605710810420438, dt = 0.00935401444232782
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.21 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 346.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 0.009354014772223147                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3705e+05 | 32768 |      1 | 9.722e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.3746424864892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699250954843717, dt = 0.009354014772223147
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     : 4.46 us    (1.4%)
   patch tree reduce : 992.00 ns  (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 298.46 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.2%)
Info: cfl dt = 0.009354014038852656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3668e+05 | 32768 |      1 | 9.733e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.9964065108522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792791102565949, dt = 0.009354014038852656
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     : 4.76 us    (1.5%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 294.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Info: cfl dt = 0.009354013809004533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3992e+05 | 32768 |      1 | 9.640e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.32522998858735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886331242954475, dt = 0.009354013809004533
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     : 4.69 us    (1.4%)
   patch tree reduce : 861.00 ns  (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 325.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.6%)
Info: cfl dt = 0.009354014091571522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4038e+05 | 32768 |      1 | 9.627e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.79702987725057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979871381044521, dt = 0.009354014091571522
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.21 us    (1.5%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 329.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (64.7%)
Info: cfl dt = 0.009354013492979645                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3850e+05 | 32768 |      1 | 9.680e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.85932946314085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073411521960236, dt = 0.009354013492979645
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     : 4.66 us    (1.5%)
   patch tree reduce : 1.01 us    (0.3%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 301.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (67.4%)
Info: cfl dt = 0.00935401320821757                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3757e+05 | 32768 |      1 | 9.707e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.91006063609893 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166951656890032, dt = 0.00935401320821757
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     : 4.64 us    (1.4%)
   patch tree reduce : 1.01 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.9%)
Info: cfl dt = 0.009354013425837925                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2738e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.44028973667287 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260491788972208, dt = 0.009354013425837925
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     : 4.81 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 301.66 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.8%)
Info: cfl dt = 0.009354012977125632                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3987e+05 | 32768 |      1 | 9.641e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.2672401887724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354031923230588, dt = 0.009354012977125632
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.46 us    (1.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 405.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
Info: cfl dt = 0.009354012638376201                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3747e+05 | 32768 |      1 | 9.710e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.80631009852794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447572053001845, dt = 0.009354012638376201
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.29 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 295.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.4%)
Info: cfl dt = 0.00935401279214036                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3887e+05 | 32768 |      1 | 9.670e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.24412367951066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541112179385607, dt = 0.00935401279214036
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     : 4.57 us    (1.4%)
   patch tree reduce : 1.17 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 303.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.6%)
Info: cfl dt = 0.009354012489818625                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3431e+05 | 32768 |      1 | 9.802e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.5577851378374 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.963465230730701, dt = 0.009354012489818625
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     : 4.35 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 328.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.5%)
Info: cfl dt = 0.00935401209801919                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4242e+05 | 32768 |      1 | 9.570e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.89225709479825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728192432205196, dt = 0.00935401209801919
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.23 us    (1.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 333.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (66.2%)
Info: cfl dt = 0.00935401218903091                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3306e+05 | 32768 |      1 | 9.839e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.27072844199336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821732553185388, dt = 0.00935401218903091
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     : 4.87 us    (1.5%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 297.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Info: cfl dt = 0.00935401202970732                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3674e+05 | 32768 |      1 | 9.731e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.05138348809623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915272675075697, dt = 0.008472732492430302
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.10 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 326.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Info: cfl dt = 0.009354011627077614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3915e+05 | 32768 |      1 | 9.662e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.6989939087435 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 31.250286514000003 (s)                                   [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.04 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.81 us    (55.2%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (0.4%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 317.96 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.66 us    (0.8%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.51 us    (1.0%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 324.99 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 1.82 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.2%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3077e+05 | 32768 |      1 | 9.907e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.48 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 317.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.3%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3051e+05 | 32768 |      1 | 9.914e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.6525511992404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 331.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.2%)
Info: cfl dt = 0.009354070557356715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3353e+05 | 32768 |      1 | 9.825e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.7541613163896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070557356715
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.56 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 299.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.7%)
Info: cfl dt = 0.009354069063258542                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2791e+05 | 32768 |      1 | 9.993e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.98471412108825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226864329604, dt = 0.009354069063258542
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.77 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 302.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (63.2%)
Info: cfl dt = 0.009354065243429733                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4396e+05 | 32768 |      1 | 9.527e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.4724936195922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741629592758815, dt = 0.009354065243429733
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.89 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 302.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.4%)
Info: cfl dt = 0.009354063965791116                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3423e+05 | 32768 |      1 | 9.804e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.4781530414592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677036117101788, dt = 0.009354063965791116
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.50 us    (1.8%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 292.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.6%)
Info: cfl dt = 0.00935406293722296                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3831e+05 | 32768 |      1 | 9.686e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.6691496024337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612442513680899, dt = 0.00935406293722296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 328.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.4%)
Info: cfl dt = 0.00935406009155936                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3769e+05 | 32768 |      1 | 9.704e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.03484956939224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547848807403195, dt = 0.00935406009155936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.58 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (58.3%)
Info: cfl dt = 0.009354058981621798                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4070e+05 | 32768 |      1 | 9.618e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.127533440588 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325481655913, dt = 0.009354058981621798
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.24 us    (1.5%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 321.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Info: cfl dt = 0.009354058398246823                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3867e+05 | 32768 |      1 | 9.675e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.04043212699844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866071472131, dt = 0.009354058398246823
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.83 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 326.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
Info: cfl dt = 0.009354055918166097                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4344e+05 | 32768 |      1 | 9.541e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.9379902803113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066554545992, dt = 0.009354055918166097
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.46 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 297.10 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (67.1%)
Info: cfl dt = 0.009354054828410799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3974e+05 | 32768 |      1 | 9.645e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.1372646623467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289472146362602, dt = 0.009354054828410799
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.79 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 335.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.6%)
Info: cfl dt = 0.009354054643917838                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4043e+05 | 32768 |      1 | 9.625e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.8511712962863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224877629203682, dt = 0.009354054643917838
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.66 us    (0.8%)
   patch tree reduce : 1.91 us    (0.3%)
   gen split merge   : 911.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.2%)
   LB compute        : 715.76 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.5%)
Info: cfl dt = 0.009354052333709638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2509e+05 | 32768 |      1 | 1.008e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.0856166885023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160283093595466, dt = 0.009354052333709638
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.95 us    (0.9%)
   patch tree reduce : 1.48 us    (0.2%)
   gen split merge   : 781.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 634.57 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (68.3%)
Info: cfl dt = 0.009354051217037918                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2015e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0067567759337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568832696643, dt = 0.009354051217037918
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.31 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 300.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.3%)
Info: cfl dt = 0.009354051160740375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3800e+05 | 32768 |      1 | 9.695e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.34772300712314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403109344867022, dt = 0.009354051160740375
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.10 us    (1.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 390.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
Info: cfl dt = 0.009354049165896591                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3464e+05 | 32768 |      1 | 9.792e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.8970256820501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966498564744257, dt = 0.009354049165896591
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.21 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 329.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.7%)
Info: cfl dt = 0.009354048009338565                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2885e+05 | 32768 |      1 | 9.964e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.9467617948763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901903481333918, dt = 0.009354048009338565
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     : 4.80 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 361.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
Info: cfl dt = 0.009354047838085631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4929e+05 | 32768 |      1 | 9.381e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.952477719895 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837308282267774, dt = 0.009354047838085631
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     : 4.94 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 345.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.6%)
Info: cfl dt = 0.009354046323290361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4993e+05 | 32768 |      1 | 9.364e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.6097995316574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772713066076337, dt = 0.009354046323290361
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.75 us    (1.7%)
   patch tree reduce : 1.13 us    (0.3%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 315.74 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.4%)
Info: cfl dt = 0.009354045127035065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4906e+05 | 32768 |      1 | 9.388e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.7150411992886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708117698405374, dt = 0.009354045127035065
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     : 4.70 us    (1.5%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 300.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.2%)
Info: cfl dt = 0.00935404486181552                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4869e+05 | 32768 |      1 | 9.398e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.3319268448788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964352221110888, dt = 0.00935404486181552
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     : 4.77 us    (1.4%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 331.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 0.00935404374999631                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4746e+05 | 32768 |      1 | 9.431e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.0740022261335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057892669729043, dt = 0.00935404374999631
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.00 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 327.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
Info: cfl dt = 0.009354042518640951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4969e+05 | 32768 |      1 | 9.371e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.36187825001826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514331072290063, dt = 0.009354042518640951
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     : 4.70 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 327.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.0%)
Info: cfl dt = 0.009354042176359652                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4560e+05 | 32768 |      1 | 9.481e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.16352622996743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449735324154158, dt = 0.009354042176359652
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     : 4.85 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.3%)
   LB compute        : 296.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Info: cfl dt = 0.009354041407396577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4652e+05 | 32768 |      1 | 9.456e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.10377539209424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385139541790123, dt = 0.009354041407396577
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     : 4.73 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 299.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.8%)
Info: cfl dt = 0.009354040146256508                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4720e+05 | 32768 |      1 | 9.438e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.80270894630723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432054368252978, dt = 0.009354040146256508
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     : 4.44 us    (1.2%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 359.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Info: cfl dt = 0.009354039739735663                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4354e+05 | 32768 |      1 | 9.538e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.04891216294146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525594769715543, dt = 0.009354039739735663
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     : 4.45 us    (1.4%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 293.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (65.5%)
Info: cfl dt = 0.009354039266221074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4340e+05 | 32768 |      1 | 9.542e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.8966713857308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191351671128993, dt = 0.009354039266221074
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     : 4.94 us    (1.5%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.3%)
   LB compute        : 310.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (63.7%)
Info: cfl dt = 0.00935403797992317                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5089e+05 | 32768 |      1 | 9.339e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.5960745367095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267555977511, dt = 0.00935403797992317
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.10 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 294.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
Info: cfl dt = 0.009354037518533058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4775e+05 | 32768 |      1 | 9.423e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.3715903784482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806215939574342, dt = 0.009354037518533058
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     : 4.68 us    (1.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 289.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (64.7%)
Info: cfl dt = 0.009354037302899045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2263e+05 | 32768 |      1 | 1.016e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.55849923887206 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2899756314759672, dt = 0.009354037302899045
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     : 4.61 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 317.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.1%)
Info: cfl dt = 0.009354035994985242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4044e+05 | 32768 |      1 | 9.625e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.85826871959887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932966877886624, dt = 0.009354035994985242
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     : 4.97 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 320.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
Info: cfl dt = 0.009354035485396654                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3188e+05 | 32768 |      1 | 9.873e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.0649309186436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086837047738515, dt = 0.009354035485396654
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     : 4.83 us    (1.5%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.0%)
Info: cfl dt = 0.009354035497753904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2209e+05 | 32768 |      1 | 1.017e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.99575542417455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803774025924814, dt = 0.009354035497753904
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     : 4.89 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 329.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.2%)
Info: cfl dt = 0.009354034170702087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4225e+05 | 32768 |      1 | 9.574e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.71474640984087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739177575700207, dt = 0.009354034170702087
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     : 4.94 us    (1.6%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 300.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.9%)
Info: cfl dt = 0.00935403361756402                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4834e+05 | 32768 |      1 | 9.407e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.9810375957331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674580992770414, dt = 0.00935403361756402
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     : 4.98 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 291.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.3%)
Info: cfl dt = 0.009354033829266275                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4808e+05 | 32768 |      1 | 9.414e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.7123515963176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460998435452682, dt = 0.009354033829266275
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     : 4.99 us    (1.6%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 292.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (62.0%)
Info: cfl dt = 0.009354032489412682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4715e+05 | 32768 |      1 | 9.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.7568966177736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545387737453443, dt = 0.009354032489412682
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.00 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 324.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Info: cfl dt = 0.009354031895900786                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4800e+05 | 32768 |      1 | 9.416e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.62656261032987 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648079098639471, dt = 0.009354031895900786
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     : 4.83 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.3%)
   LB compute        : 296.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.8%)
Info: cfl dt = 0.009354032050593227                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4302e+05 | 32768 |      1 | 9.553e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.50475825726244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741619417598479, dt = 0.009354032050593227
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.20 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 333.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.2%)
Info: cfl dt = 0.009354030935966824                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4697e+05 | 32768 |      1 | 9.444e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.56937336348966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835159738104411, dt = 0.009354030935966824
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     : 4.69 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 318.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.2%)
Info: cfl dt = 0.009354030304204466                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3460e+05 | 32768 |      1 | 9.793e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.8527951051128 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39287000474640793, dt = 0.009354030304204466
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     : 4.55 us    (1.5%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.3%)
   LB compute        : 287.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Info: cfl dt = 0.00935403040395369                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4773e+05 | 32768 |      1 | 9.423e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.3521075564139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022240350506124, dt = 0.00935403040395369
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     : 4.66 us    (1.4%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 306.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.9%)
Info: cfl dt = 0.009354029497301138                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4524e+05 | 32768 |      1 | 9.491e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.7905695728343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115780654545661, dt = 0.009354029497301138
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     : 4.96 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 293.21 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.4%)
Info: cfl dt = 0.009354028828673377                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4765e+05 | 32768 |      1 | 9.426e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.2650934332641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093209495186723, dt = 0.009354028828673377
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     : 4.71 us    (1.3%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 336.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.8%)
Info: cfl dt = 0.00935402887490641                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4297e+05 | 32768 |      1 | 9.554e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.45390115776513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302861237805406, dt = 0.00935402887490641
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     : 4.63 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 340.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.6%)
Info: cfl dt = 0.009354028162104929                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4126e+05 | 32768 |      1 | 9.602e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.70324978096033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.439640152655447, dt = 0.009354028162104929
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     : 4.95 us    (1.5%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 306.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.5%)
Info: cfl dt = 0.009354027457488544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3849e+05 | 32768 |      1 | 9.681e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.85815304427337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899418081755194, dt = 0.009354027457488544
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.06 us    (1.7%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 762.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 285.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
Info: cfl dt = 0.009354027451208436                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3249e+05 | 32768 |      1 | 9.855e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.6835735022455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834820827504047, dt = 0.009354027451208436
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.26 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 303.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.8%)
Info: cfl dt = 0.009354026920548524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4587e+05 | 32768 |      1 | 9.474e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.44190418904645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677022357262489, dt = 0.009354026920548524
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     : 4.86 us    (1.6%)
   patch tree reduce : 1.21 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 284.21 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (62.8%)
Info: cfl dt = 0.009354026180478509                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4101e+05 | 32768 |      1 | 9.609e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.4415860353626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705626264679746, dt = 0.009354026180478509
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     : 4.79 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 662.00 ns  (0.2%)
   LB compute        : 335.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (68.7%)
Info: cfl dt = 0.009354026122414687                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4364e+05 | 32768 |      1 | 9.536e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.1475403968589 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486410288827276, dt = 0.009354026122414687
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.63 us    (1.7%)
   patch tree reduce : 931.00 ns  (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.3%)
   LB compute        : 304.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (60.8%)
Info: cfl dt = 0.009354025764058726                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3946e+05 | 32768 |      1 | 9.653e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.85310491017236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957643149496907, dt = 0.009354025764058726
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.47 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 294.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.6%)
Info: cfl dt = 0.009354024988847718                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4053e+05 | 32768 |      1 | 9.623e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.9467891070872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051183407137494, dt = 0.009354024988847718
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     : 4.54 us    (1.2%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 368.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.0%)
Info: cfl dt = 0.009354024879560215                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4327e+05 | 32768 |      1 | 9.546e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.7698769440603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144723657025971, dt = 0.009354024879560215
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     : 4.93 us    (1.6%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.3%)
   LB compute        : 293.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (66.7%)
Info: cfl dt = 0.009354024685131709                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3862e+05 | 32768 |      1 | 9.677e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.9861317898047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238263905821573, dt = 0.009354024685131709
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     : 4.93 us    (1.6%)
   patch tree reduce : 1.05 us    (0.3%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 297.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (59.6%)
Info: cfl dt = 0.009354023874954953                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3752e+05 | 32768 |      1 | 9.708e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.86063153319236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.533180415267289, dt = 0.009354023874954953
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.50 us    (1.5%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 337.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.3%)
Info: cfl dt = 0.009354023714906021                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3614e+05 | 32768 |      1 | 7.513e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.20536829038747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.542534439142244, dt = 0.009354023714906021
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     : 4.76 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 319.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Info: cfl dt = 0.0093540236771764                                        [amr::basegodunov][rank=0]
Info: Timestep 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.4832e+05 | 32768 |      1 | 7.309e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.72673640452155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55188846285715, dt = 0.0093540236771764
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     : 4.71 us    (1.3%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 333.23 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.5%)
Info: cfl dt = 0.009354022832131598                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4919e+05 | 32768 |      1 | 7.295e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.6160773794566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612424865343264, dt = 0.009354022832131598
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.10 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 285.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.4%)
Info: cfl dt = 0.009354022621734466                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5313e+05 | 32768 |      1 | 7.232e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.6637398612002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570596509366458, dt = 0.009354022621734466
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    (1.8%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 291.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
Info: cfl dt = 0.009354022734382973                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4148e+05 | 32768 |      1 | 7.422e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.69021932354906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799505319881925, dt = 0.009354022734382973
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.19 us    (1.8%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 272.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.3%)
Info: cfl dt = 0.009354021854531977                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2078e+05 | 32768 |      1 | 7.787e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.42257736680557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893045547225755, dt = 0.009354021854531977
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.12 us    (1.8%)
   patch tree reduce : 1.03 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 261.39 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.1%)
Info: cfl dt = 0.00935402159418347                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3382e+05 | 32768 |      1 | 9.816e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.0586019414098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986585765771074, dt = 0.00935402159418347
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     : 4.82 us    (1.3%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 348.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.1%)
Info: cfl dt = 0.009354021851612168                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3826e+05 | 32768 |      1 | 9.687e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.6131636623821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080125981712909, dt = 0.009354021851612168
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     : 7.09 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 283.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.9%)
Info: cfl dt = 0.009354020937009577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2924e+05 | 32768 |      1 | 9.953e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.3465156798011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173666200229031, dt = 0.009354020937009577
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.94 us    (1.7%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 338.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
Info: cfl dt = 0.009354020627111506                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3295e+05 | 32768 |      1 | 9.842e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.1629971766462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267206409599126, dt = 0.009354020627111506
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.57 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 342.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (81.2%)
Info: cfl dt = 0.009354020929329552                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3076e+05 | 32768 |      1 | 9.907e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.90821736883333 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360746615870242, dt = 0.009354020929329552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.3%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 401.68 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.3%)
Info: cfl dt = 0.009354020075014327                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3774e+05 | 32768 |      1 | 9.702e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.08514534360353 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454286825163538, dt = 0.009354020075014327
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.75 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 299.47 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (60.4%)
Info: cfl dt = 0.00935401971598696                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3345e+05 | 32768 |      1 | 9.827e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.6746806349288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547827025913681, dt = 0.00935401971598696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 299.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.7%)
Info: cfl dt = 0.009354019956140472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3051e+05 | 32768 |      1 | 9.914e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.65352292507225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664136722307355, dt = 0.009354019956140472
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.57 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 301.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.3%)
Info: cfl dt = 0.009354019264506987                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3464e+05 | 32768 |      1 | 9.792e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.9012940328416 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734907422634955, dt = 0.009354019264506987
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.89 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 361.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.5%)
Info: cfl dt = 0.009354018856797064                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2844e+05 | 32768 |      1 | 9.977e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.5246387068826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828447615280024, dt = 0.009354018856797064
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.87 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.20 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.4%)
Info: cfl dt = 0.009354019035518996                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2549e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.49244421498594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921987803847995, dt = 0.009354019035518996
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.25 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 335.11 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.3%)
Info: cfl dt = 0.009354018501887546                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3340e+05 | 32768 |      1 | 9.829e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.6197575716436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015527994203186, dt = 0.009354018501887546
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.95 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 336.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.009354018045972506                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2567e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.6826561022665 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109068179222061, dt = 0.009354018045972506
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.8%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 333.30 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.1%)
Info: cfl dt = 0.009354018163947393                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2349e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.4343589464085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202608359681786, dt = 0.009354018163947393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 303.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.5%)
Info: cfl dt = 0.009354017783935142                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1745e+05 | 32768 |      1 | 1.032e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.22898868096394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.729614854132126, dt = 0.009354017783935142
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.12 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 311.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
Info: cfl dt = 0.009354017280324749                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2716e+05 | 32768 |      1 | 1.002e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.2066893463096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389688719160612, dt = 0.009354017280324749
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 308.43 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 10.26 us   (3.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.3%)
Info: cfl dt = 0.009354017338284068                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2464e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.6249717149281 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483228891963859, dt = 0.009354017338284068
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 295.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.0%)
Info: cfl dt = 0.00935401710775742                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2768e+05 | 32768 |      1 | 1.000e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.74099074293633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.75767690653467, dt = 0.00935401710775742
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 343.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Info: cfl dt = 0.009354016556993675                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2347e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.4158501405183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670309236424274, dt = 0.009354016556993675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 332.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Info: cfl dt = 0.009354016555710906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2031e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.1666337267701 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763849401994211, dt = 0.009354016555710906
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.48 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 339.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (69.9%)
Info: cfl dt = 0.00935401647074776                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2287e+05 | 32768 |      1 | 1.015e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.8039554756114 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.785738956755132, dt = 0.00935401647074776
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.75 us    (1.6%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Info: cfl dt = 0.009354015873403622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2578e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.7901882648854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950929732258797, dt = 0.009354015873403622
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.86 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 304.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.7%)
Info: cfl dt = 0.009354015813689246                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2361e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5621698261458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044469890992834, dt = 0.009354015813689246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 339.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 10.47 us   (2.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.0%)
Info: cfl dt = 0.009354015870549008                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2609e+05 | 32768 |      1 | 1.005e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.114948861443 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138010049129726, dt = 0.009354015870549008
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 302.43 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.00935401522722641                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2323e+05 | 32768 |      1 | 1.014e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.1666309026659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231550207835215, dt = 0.00935401522722641
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.97 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 339.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.8%)
Info: cfl dt = 0.009354015109923043                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3170e+05 | 32768 |      1 | 9.879e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.880568011224 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.832509036010748, dt = 0.009354015109923043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 336.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (70.9%)
Info: cfl dt = 0.009354015305022731                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2978e+05 | 32768 |      1 | 9.936e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.90511831128293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418630511206711, dt = 0.009354015305022731
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 304.90 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 25.29 us   (7.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.6%)
Info: cfl dt = 0.00935401461635011                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2835e+05 | 32768 |      1 | 9.979e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.4379082715975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512170664256938, dt = 0.00935401461635011
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 339.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.1%)
Info: cfl dt = 0.00935401444232782                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2829e+05 | 32768 |      1 | 9.981e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.3753911800794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605710810420439, dt = 0.00935401444232782
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.95 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 334.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.3%)
Info: cfl dt = 0.009354014772223147                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2658e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.6121678256793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699250954843718, dt = 0.009354014772223147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 307.22 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.7%)
Info: cfl dt = 0.009354014038852658                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2570e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.70608139370364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.879279110256595, dt = 0.009354014038852658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 310.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (71.0%)
Info: cfl dt = 0.009354013809004533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2375e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.7067792527521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886331242954476, dt = 0.009354013809004533
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.97 us    (1.8%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 310.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (61.4%)
Info: cfl dt = 0.009354014091571522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3268e+05 | 32768 |      1 | 9.850e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.8818358122717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979871381044522, dt = 0.009354014091571522
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.59 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 358.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.5%)
Info: cfl dt = 0.009354013492979645                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2889e+05 | 32768 |      1 | 9.963e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.989705309597 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073411521960237, dt = 0.009354013492979645
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.56 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 329.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Info: cfl dt = 0.009354013208217566                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3439e+05 | 32768 |      1 | 9.799e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.6427707268377 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166951656890033, dt = 0.009354013208217566
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.93 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 295.04 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.98 us    (66.7%)
Info: cfl dt = 0.00935401342583792                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2929e+05 | 32768 |      1 | 9.951e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.3986017008061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260491788972209, dt = 0.00935401342583792
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.91 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 309.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.2%)
Info: cfl dt = 0.00935401297712563                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3111e+05 | 32768 |      1 | 9.896e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.2703029607902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354031923230589, dt = 0.00935401297712563
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.72 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 331.45 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.7%)
Info: cfl dt = 0.0093540126383762                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3752e+05 | 32768 |      1 | 9.709e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.85196585227516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447572053001846, dt = 0.0093540126383762
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.96 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Info: cfl dt = 0.009354012792140357                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3098e+05 | 32768 |      1 | 9.900e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.13663766901624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541112179385608, dt = 0.009354012792140357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 337.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
Info: cfl dt = 0.009354012489818625                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2236e+05 | 32768 |      1 | 1.017e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.27809043844167 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634652307307011, dt = 0.009354012489818625
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.88 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 319.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.009354012098019188                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2099e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.86533889652077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728192432205197, dt = 0.009354012098019188
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.63 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (63.0%)
Info: cfl dt = 0.009354012189030909                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2071e+05 | 32768 |      1 | 1.022e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.58430547990235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821732553185389, dt = 0.009354012189030909
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.49 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 356.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Info: cfl dt = 0.009354012029707318                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2487e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.8605712225268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915272675075698, dt = 0.00847273249243019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 300.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.1%)
Info: cfl dt = 0.009354011627077611                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2634e+05 | 32768 |      1 | 1.004e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.77143355844447 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 41.788117399 (s)                                         [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.12 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.95 us    (58.2%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (0.4%)
   patch tree reduce : 951.00 ns  (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 315.39 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 22.14 us   (6.5%)
   patch tree reduce : 711.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 309.30 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 1.97 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.6%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+05 | 32768 |      1 | 1.041e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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     : 4.66 us    (1.5%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 303.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.8%)
Info: cfl dt = 0.009354078154867489                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1298e+05 | 32768 |      1 | 1.047e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.64477181821223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
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.73 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 300.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.8%)
Info: cfl dt = 0.009354072671452501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3014e+05 | 32768 |      1 | 9.925e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.27579229478454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354072671452501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 333.68 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.6%)
Info: cfl dt = 0.009354069542070588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2359e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5392464908758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062234355100787, dt = 0.009354069542070588
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.75 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 298.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.2%)
Info: cfl dt = 0.009354066932195914                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2311e+05 | 32768 |      1 | 1.014e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.0457746487889 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741630389717138, dt = 0.009354066932195914
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.99 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 354.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (65.6%)
Info: cfl dt = 0.009354062313399933                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3382e+05 | 32768 |      1 | 9.816e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.05720761663866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677037082936729, dt = 0.009354062313399933
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.50 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 357.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
Info: cfl dt = 0.009354059631342256                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0922e+05 | 32768 |      1 | 1.060e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.7709543146124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612443314276722, dt = 0.009354059631342256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.13 us   (3.5%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.7%)
Info: cfl dt = 0.009354058218379023                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2012e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.976581785199 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547849277410948, dt = 0.009354058218379023
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.27 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 341.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.5%)
Info: cfl dt = 0.009354053948785546                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2476e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.7423082895007 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325509924885, dt = 0.009354053948785546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 312.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (60.9%)
Info: cfl dt = 0.009354051190739362                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2121e+05 | 32768 |      1 | 1.020e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.0931782237231 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418660494127406, dt = 0.009354051190739362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.5%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 406.28 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (69.1%)
Info: cfl dt = 0.009354050851596313                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0653e+05 | 32768 |      1 | 1.069e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.00871971421964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354065613201341, dt = 0.009354050851596313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 330.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.9%)
Info: cfl dt = 0.009354046763265974                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1329e+05 | 32768 |      1 | 1.046e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.95991185433235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289470698360972, dt = 0.009354046763265974
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.71 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 333.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.8%)
Info: cfl dt = 0.0093540437693784                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2069e+05 | 32768 |      1 | 1.022e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.5648412897896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224875374687569, dt = 0.0093540437693784
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 331.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.0%)
Info: cfl dt = 0.00935404303943395                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1973e+05 | 32768 |      1 | 1.025e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.57200855563224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1216027975162541, dt = 0.00935404303943395
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     : 28.48 us   (7.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 345.98 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.7%)
Info: cfl dt = 0.009354039905991662                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0541e+05 | 32768 |      1 | 1.073e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.8548357226403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095684055568804, dt = 0.009354039905991662
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.70 us    (1.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 301.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (60.0%)
Info: cfl dt = 0.009354036781388759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0151e+05 | 32768 |      1 | 1.087e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.8549818691661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403108804616797, dt = 0.009354036781388759
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.85 us    (2.0%)
   patch tree reduce : 1.87 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        : 271.16 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (63.8%)
Info: cfl dt = 0.009354035595879428                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8567e+05 | 32768 |      1 | 8.496e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 396.34095787011347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966491724306846, dt = 0.009354035595879428
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.69 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 348.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.2%)
Info: cfl dt = 0.009354033526464313                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1642e+05 | 32768 |      1 | 7.869e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.94377619608196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189528389479, dt = 0.009354033526464313
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.81 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 344.15 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.0%)
Info: cfl dt = 0.009354030284708065                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1860e+05 | 32768 |      1 | 7.828e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.17568299548896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683729863654122, dt = 0.009354030284708065
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.50 us    (1.8%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 292.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.2%)
Info: cfl dt = 0.009354028645250777                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1265e+05 | 32768 |      1 | 7.941e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 424.0681632100152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772701665012028, dt = 0.009354028645250777
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 325.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.1%)
Info: cfl dt = 0.009354027656631493                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0181e+05 | 32768 |      1 | 8.155e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.92910494193234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708104529537106, dt = 0.009354027656631493
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 325.22 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.9%)
Info: cfl dt = 0.00935402431293075                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1539e+05 | 32768 |      1 | 1.039e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.11153945252926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643507295200255, dt = 0.00935402431293075
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.78 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 279.75 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (61.4%)
Info: cfl dt = 0.00935402222323993                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2277e+05 | 32768 |      1 | 1.015e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.6989219995351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057890972649333, dt = 0.00935402222323993
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 276.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Info: cfl dt = 0.00935402230445667                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7426e+05 | 32768 |      1 | 1.195e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 281.84924284929053 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514311948817322, dt = 0.00935402230445667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 307.46 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (62.9%)
Info: cfl dt = 0.00935401889141151                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1654e+05 | 32768 |      1 | 1.035e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.30043440178565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2244971417926299, dt = 0.00935401889141151
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.48 us    (0.4%)
   patch tree reduce : 1.74 us    (0.1%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.1%)
   LB compute        : 1.52 ms    (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (60.3%)
Info: cfl dt = 0.009354016371546729                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9780e+05 | 32768 |      1 | 1.100e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.04235495966014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511606840414, dt = 0.009354016371546729
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.53 us    (1.7%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 299.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.0%)
Info: cfl dt = 0.00935401573809435                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1608e+05 | 32768 |      1 | 1.037e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.8232919643274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320517705558814, dt = 0.00935401573809435
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.86 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 301.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.0%)
Info: cfl dt = 0.00935401332650307                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1431e+05 | 32768 |      1 | 1.043e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.00590449107233 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591927936825, dt = 0.00935401332650307
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.53 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 328.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.3%)
Info: cfl dt = 0.009354010577817326                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2172e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.6245174426467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619132061201856, dt = 0.009354010577817326
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     : 27.45 us   (7.4%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 329.54 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.5%)
Info: cfl dt = 0.009354009402630885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1276e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.41364115753765 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712672166980029, dt = 0.009354009402630885
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.73 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 298.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.3%)
Info: cfl dt = 0.009354008039109959                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1113e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.7385208900028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806212261006338, dt = 0.009354008039109959
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.71 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 352.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.4%)
Info: cfl dt = 0.009354005105330507                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2423e+05 | 32768 |      1 | 1.011e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.2006834791238 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997523413974374, dt = 0.009354005105330507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 301.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.9%)
Info: cfl dt = 0.00935400343453309                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1888e+05 | 32768 |      1 | 1.028e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.70381854957117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932923924507426, dt = 0.00935400343453309
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.82 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 307.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (65.4%)
Info: cfl dt = 0.009354003131705427                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0907e+05 | 32768 |      1 | 1.060e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.6225624926258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30868324267960734, dt = 0.009354003131705427
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.38 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 296.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (60.9%)
Info: cfl dt = 0.00935400005424546                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0961e+05 | 32768 |      1 | 1.058e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.17184318210155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803724581131276, dt = 0.00935400005424546
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.29 us    (1.5%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 324.08 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.9%)
Info: cfl dt = 0.009353997920556039                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0202e+05 | 32768 |      1 | 1.085e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.37455207484777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739124586555823, dt = 0.009353997920556039
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.24 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 297.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (68.5%)
Info: cfl dt = 0.009353997609864382                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1569e+05 | 32768 |      1 | 1.038e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.4223762663177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674524378611426, dt = 0.009353997609864382
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     : 4.81 us    (1.5%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 306.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.3%)
Info: cfl dt = 0.009353995061177256                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1086e+05 | 32768 |      1 | 7.976e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.22027148209395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609924139597864, dt = 0.009353995061177256
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     : 4.68 us    (1.5%)
   patch tree reduce : 1.13 us    (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 296.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.6%)
Info: cfl dt = 0.009353992602423469                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3205e+05 | 32768 |      1 | 7.584e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.9980634372618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554532364571559, dt = 0.009353992602423469
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     : 4.72 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.3%)
   LB compute        : 314.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
Info: cfl dt = 0.009353991674628024                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3398e+05 | 32768 |      1 | 7.551e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.9864573440482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480722905957935, dt = 0.009353991674628024
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     : 4.90 us    (1.4%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 327.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
Info: cfl dt = 0.009353990122304028                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2384e+05 | 32768 |      1 | 7.731e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.5609676039651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741612207342074, dt = 0.009353990122304028
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 313.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.6%)
Info: cfl dt = 0.009353987444339453                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6798e+05 | 32768 |      1 | 8.905e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 378.1568488366474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835152108565114, dt = 0.009353987444339453
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.81 us    (1.8%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 309.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.4%)
Info: cfl dt = 0.009353986008052543                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4714e+05 | 32768 |      1 | 7.328e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.5074207076887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691983008509, dt = 0.009353986008052543
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 310.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (63.8%)
Info: cfl dt = 0.009353985480752107                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3402e+05 | 32768 |      1 | 7.550e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.0278716310987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231843089034, dt = 0.009353985480752107
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.77 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 312.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (60.9%)
Info: cfl dt = 0.009353982627727641                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4895e+05 | 32768 |      1 | 7.299e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.3672646454929 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157716978965553, dt = 0.009353982627727641
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 365.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
Info: cfl dt = 0.00935398072584589                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3200e+05 | 32768 |      1 | 9.870e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.18435987640305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093115241738316, dt = 0.00935398072584589
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.51 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 312.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (61.9%)
Info: cfl dt = 0.009353980586634805                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3143e+05 | 32768 |      1 | 9.887e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.59498927977023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.430285133143229, dt = 0.009353980586634805
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.75 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 338.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (66.6%)
Info: cfl dt = 0.009353977985005717                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1308e+05 | 32768 |      1 | 1.047e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.73532007788623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4396391137298638, dt = 0.009353977985005717
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.46 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 314.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.0%)
Info: cfl dt = 0.009353975716037116                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1170e+05 | 32768 |      1 | 1.051e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.3185076159159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489930917148695, dt = 0.009353975716037116
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.57 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 323.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
Info: cfl dt = 0.009353974934539745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1137e+05 | 32768 |      1 | 1.052e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.98189495249466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834706743090664, dt = 0.009353974934539745
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.50 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 294.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.3%)
Info: cfl dt = 0.009353973277431564                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1428e+05 | 32768 |      1 | 1.043e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.97240066669275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677010423654464, dt = 0.009353973277431564
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.81 us    (1.9%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 289.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.1%)
Info: cfl dt = 0.009353970777021157                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4682e+05 | 32768 |      1 | 9.448e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.40844414684926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705501564287794, dt = 0.009353970777021157
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.50 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 335.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (69.5%)
Info: cfl dt = 0.009353969492541978                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4261e+05 | 32768 |      1 | 9.564e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.08799924380435 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4864089864198991, dt = 0.009353969492541978
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.76 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 305.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Info: cfl dt = 0.009353968818935948                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6388e+05 | 32768 |      1 | 9.005e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 373.9414823063109 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957629559124411, dt = 0.009353968818935948
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.84 us    (2.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 275.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
Info: cfl dt = 0.009353966130085503                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2294e+05 | 32768 |      1 | 7.748e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.6392372616311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505116924731377, dt = 0.009353966130085503
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.1%)
Info: cfl dt = 0.009353964389444518                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2111e+05 | 32768 |      1 | 7.781e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.7581748076422 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144708908614626, dt = 0.009353964389444518
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.61 us    (1.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 280.49 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.009353964363723063                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2767e+05 | 32768 |      1 | 7.662e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.4930280150498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.523824855250907, dt = 0.009353964363723063
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.93 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 282.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.8%)
Info: cfl dt = 0.009353961738053244                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2051e+05 | 32768 |      1 | 1.022e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.37275467853203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331788196146301, dt = 0.009353961738053244
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.37 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 305.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.8%)
Info: cfl dt = 0.009353959610622544                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5772e+05 | 32768 |      1 | 7.159e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.3816731456674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425327813526833, dt = 0.009353959610622544
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.65 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 329.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Info: cfl dt = 0.009353958936962026                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5702e+05 | 32768 |      1 | 7.170e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.6626446044304 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518867409633059, dt = 0.009353958936962026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 316.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.5%)
Info: cfl dt = 0.00935395720713819                                       [amr::basegodunov][rank=0]
Info: Timestep 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.5551e+05 | 32768 |      1 | 7.194e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.11247995378704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406999002679, dt = 0.00935395720713819
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 23.36 us   (6.7%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 304.56 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.7%)
Info: cfl dt = 0.009353954844717589                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2642e+05 | 32768 |      1 | 1.004e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.44783209379204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705946571074061, dt = 0.009353954844717589
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.78 us    (1.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 286.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.0%)
Info: cfl dt = 0.00935395367927799                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2467e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.6511928667685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799486119521237, dt = 0.00935395367927799
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.66 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 376.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (61.1%)
Info: cfl dt = 0.009353952891896599                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2750e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.55388920036654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893025656314016, dt = 0.009353952891896599
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 303.80 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (59.3%)
Info: cfl dt = 0.009353950335108724                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2774e+05 | 32768 |      1 | 9.998e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.8002404856459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986565185232982, dt = 0.009353950335108724
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 304.78 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (67.2%)
Info: cfl dt = 0.009353948725881087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2987e+05 | 32768 |      1 | 9.934e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.9887174133094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080104688584069, dt = 0.009353948725881087
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.82 us    (1.9%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 290.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.0%)
Info: cfl dt = 0.009353948799885563                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2761e+05 | 32768 |      1 | 1.000e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.6752904190419 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173644175842881, dt = 0.009353948799885563
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.12 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 297.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.0%)
Info: cfl dt = 0.009353946150941601                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2873e+05 | 32768 |      1 | 9.968e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.8173042830105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267183663841737, dt = 0.009353946150941601
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.37 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 298.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (62.6%)
Info: cfl dt = 0.00935394414217964                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2603e+05 | 32768 |      1 | 1.005e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.04746173242205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360723125351153, dt = 0.00935394414217964
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.94 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 304.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.0%)
Info: cfl dt = 0.009353943566878046                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2403e+05 | 32768 |      1 | 1.011e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.9947031553955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454262566772949, dt = 0.009353943566878046
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.04 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 329.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.3%)
Info: cfl dt = 0.009353941769246223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2806e+05 | 32768 |      1 | 9.988e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.1367758002784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547802002441729, dt = 0.009353941769246223
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.23 us    (1.7%)
   patch tree reduce : 1.15 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 294.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.3%)
Info: cfl dt = 0.009353939524935018                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2874e+05 | 32768 |      1 | 9.968e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.8302203694821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641341420134191, dt = 0.009353939524935018
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.59 us    (1.8%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 294.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
Info: cfl dt = 0.009353938468965957                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2466e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.63903327049036 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734880815383542, dt = 0.009353938468965957
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     : 4.64 us    (1.3%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 330.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.0%)
Info: cfl dt = 0.009353937575423191                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2652e+05 | 32768 |      1 | 1.004e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.5497176667858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828420200073201, dt = 0.009353937575423191
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.90 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 305.27 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (63.8%)
Info: cfl dt = 0.00935393513373676                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2378e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.7311150016506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921959575827433, dt = 0.00935393513373676
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.60 us    (1.7%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 311.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (59.9%)
Info: cfl dt = 0.009353933645561198                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4108e+05 | 32768 |      1 | 9.607e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.5097910550033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.70154989271648, dt = 0.009353933645561198
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.48 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 323.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Info: cfl dt = 0.009353933684966193                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2429e+05 | 32768 |      1 | 7.723e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.0217321496163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109038263620413, dt = 0.009353933684966193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 273.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.5%)
Info: cfl dt = 0.009353931083101197                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5885e+05 | 32768 |      1 | 7.141e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.54048581345853 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202577600470075, dt = 0.009353931083101197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 298.38 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.0%)
Info: cfl dt = 0.009353929195071095                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5804e+05 | 32768 |      1 | 7.154e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.70755927244085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296116911301087, dt = 0.009353929195071095
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.80 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 297.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.1%)
Info: cfl dt = 0.009353928735686563                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4483e+05 | 32768 |      1 | 7.366e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.13580985990666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389656203251798, dt = 0.009353928735686563
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.89 us    (1.8%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.2%)
Info: cfl dt = 0.009353926865162019                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5696e+05 | 32768 |      1 | 7.171e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.59687577404924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483195490608663, dt = 0.009353926865162019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 299.82 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.6%)
Info: cfl dt = 0.009353924730538666                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2952e+05 | 32768 |      1 | 7.629e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.39418487193916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576734759260283, dt = 0.009353924730538666
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.79 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 303.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (71.7%)
Info: cfl dt = 0.009353923788328816                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4046e+05 | 32768 |      1 | 9.625e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.8698412078598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670274006565669, dt = 0.009353923788328816
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.50 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 282.90 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.4%)
Info: cfl dt = 0.009353922786110991                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2715e+05 | 32768 |      1 | 7.671e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.9615470648051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763813244448957, dt = 0.009353922786110991
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.94 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 293.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Info: cfl dt = 0.00935392045107132                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2599e+05 | 32768 |      1 | 1.005e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.00596977797846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857352472310067, dt = 0.00935392045107132
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.44 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 295.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.0%)
Info: cfl dt = 0.009353919083898446                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0809e+05 | 32768 |      1 | 1.064e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.6124282892217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.795089167682078, dt = 0.009353919083898446
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.32 us    (1.4%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 356.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.2%)
Info: cfl dt = 0.009353918985499587                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0823e+05 | 32768 |      1 | 1.063e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.75545540969665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044430867659765, dt = 0.009353918985499587
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.50 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 336.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.5%)
Info: cfl dt = 0.00935391648381086                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1244e+05 | 32768 |      1 | 1.049e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.08037838962 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137970057514761, dt = 0.00935391648381086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (0.7%)
   patch tree reduce : 1.61 us    (0.2%)
   gen split merge   : 1.00 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.2%)
   LB compute        : 890.96 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
Info: cfl dt = 0.0093539147232209                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1845e+05 | 32768 |      1 | 1.500e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 224.49155164676836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.823150922235287, dt = 0.0093539147232209
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.75 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 298.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.4%)
Info: cfl dt = 0.009353914400579779                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0710e+05 | 32768 |      1 | 1.067e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.59216491236657 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325048369585079, dt = 0.009353914400579779
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.80 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 306.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.8%)
Info: cfl dt = 0.009353912446789332                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9699e+05 | 32768 |      1 | 1.103e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.2057702683913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418587513590876, dt = 0.009353912446789332
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.55 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 330.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.6%)
Info: cfl dt = 0.009353910418473959                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1258e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.22305688958755 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512126638058769, dt = 0.009353910418473959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.9%)
Info: cfl dt = 0.009353909598166328                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1144e+05 | 32768 |      1 | 1.052e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.04990374294863 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605665742243509, dt = 0.009353909598166328
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.56 us    (1.8%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 290.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.1%)
Info: cfl dt = 0.009353908479578621                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1271e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.36172318174675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699204838225172, dt = 0.009353908479578621
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     : 4.99 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 340.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (70.3%)
Info: cfl dt = 0.009353906247050056                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1994e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.78759312923273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792743923020958, dt = 0.009353906247050056
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.12 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 295.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.4%)
Info: cfl dt = 0.009353905004505362                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1383e+05 | 32768 |      1 | 1.044e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.5120387674592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886282985491458, dt = 0.009353905004505362
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.69 us    (1.9%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 287.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.8%)
Info: cfl dt = 0.009353904762694536                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1552e+05 | 32768 |      1 | 1.039e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.24931623337244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979822035536512, dt = 0.009353904762694536
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     : 4.91 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 312.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (70.8%)
Info: cfl dt = 0.009353902357508003                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0802e+05 | 32768 |      1 | 1.064e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.53467243703983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073361083163457, dt = 0.009353902357508003
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.76 us    (1.8%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 293.55 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.7%)
Info: cfl dt = 0.009353900725365228                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1149e+05 | 32768 |      1 | 1.052e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.1015974336548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166900106738537, dt = 0.009353900725365228
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.76 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 316.94 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.4%)
Info: cfl dt = 0.009353900551134438                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2361e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5616493136297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260439113992189, dt = 0.009353900551134438
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.13 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 288.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.9%)
Info: cfl dt = 0.009353898500945998                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2296e+05 | 32768 |      1 | 1.015e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.88484172214385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353978119503533, dt = 0.009353898500945998
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.21 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 351.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (69.5%)
Info: cfl dt = 0.009353896577011848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2270e+05 | 32768 |      1 | 1.015e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.62496136377774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447517104512994, dt = 0.009353896577011848
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     : 4.92 us    (1.5%)
   patch tree reduce : 1.01 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 313.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
Info: cfl dt = 0.009353895884974098                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1497e+05 | 32768 |      1 | 1.040e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.6819935284287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541056070283112, dt = 0.009353895884974098
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.44 us    (1.8%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 288.21 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.9%)
Info: cfl dt = 0.009353894639553936                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1995e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.79696115349657 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634595029132853, dt = 0.009353894639553936
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.78 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 327.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.1%)
Info: cfl dt = 0.00935389250727943                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2275e+05 | 32768 |      1 | 1.015e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.6765998766055 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728133975528392, dt = 0.00935389250727943
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.77 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 321.71 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
Info: cfl dt = 0.009353891392851988                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2317e+05 | 32768 |      1 | 1.014e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.10988087173615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821672900601187, dt = 0.009353891392851988
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 287.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (69.6%)
Info: cfl dt = 0.009353890999216831                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1288e+05 | 32768 |      1 | 1.047e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.5342990684222 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915211814529707, dt = 0.008478818547029254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 280.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (62.9%)
Info: cfl dt = 0.009353888890503698                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1586e+05 | 32768 |      1 | 1.037e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.22975583687423 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 52.365865493 (s)                                         [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.14 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.79 us    (56.3%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (0.4%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 378.40 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.71 us    (1.2%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 303.47 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 1.82 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.3%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6087e+05 | 32768 |      1 | 1.256e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.44 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 306.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (62.7%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0233e+05 | 32768 |      1 | 1.084e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.6924070281347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
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.80 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 324.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.5%)
Info: cfl dt = 0.009354069799318255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4434e+05 | 32768 |      1 | 9.516e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.86606206392304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354069799318255
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.49 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 296.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.5%)
Info: cfl dt = 0.009354068824705755                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4415e+05 | 32768 |      1 | 9.521e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.6718876832079 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 307.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.1%)
Info: cfl dt = 0.009354063115090478                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4077e+05 | 32768 |      1 | 9.616e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.19364761047734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0374162949309969, dt = 0.009354063115090478
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 302.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.0%)
Info: cfl dt = 0.009354059722878038                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4427e+05 | 32768 |      1 | 9.518e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.7918391251639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035804608738, dt = 0.009354059722878038
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.97 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
Info: cfl dt = 0.009354059540598522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4319e+05 | 32768 |      1 | 9.548e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.6842511130202 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612441776896542, dt = 0.009354059540598522
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.50 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.5%)
Info: cfl dt = 0.009354054967483448                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7060e+05 | 32768 |      1 | 8.842e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 380.84999755772185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847730956394, dt = 0.009354054967483448
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.78 us    (1.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 291.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.0%)
Info: cfl dt = 0.009354051404497547                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4016e+05 | 32768 |      1 | 7.445e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.33904030523183 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253227704739, dt = 0.009354051404497547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 286.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.5%)
Info: cfl dt = 0.009354050526566368                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4465e+05 | 32768 |      1 | 7.369e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.95278762874364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418658368154494, dt = 0.009354050526566368
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.67 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 298.21 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Info: cfl dt = 0.009354047505936595                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3292e+05 | 32768 |      1 | 7.569e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.9015034718262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935406342081113, dt = 0.009354047505936595
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.43 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 301.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (62.9%)
Info: cfl dt = 0.0093540438900453                                        [amr::basegodunov][rank=0]
Info: Timestep 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.3460e+05 | 32768 |      1 | 7.540e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.62254781696396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
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.82 us    (2.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 277.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
Info: cfl dt = 0.009354042436406503                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4818e+05 | 32768 |      1 | 7.311e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.5763113386702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224872560409319, dt = 0.009354042436406503
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.74 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 278.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
Info: cfl dt = 0.009354040823324547                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4937e+05 | 32768 |      1 | 7.292e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.80198571681194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160276804049969, dt = 0.009354040823324547
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.54 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 309.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
Info: cfl dt = 0.009354037151122919                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5124e+05 | 32768 |      1 | 7.262e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.7201534948591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095680886382424, dt = 0.009354037151122919
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.94 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 315.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
Info: cfl dt = 0.009354035152573763                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4745e+05 | 32768 |      1 | 7.323e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.82899755866686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
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.40 us    (1.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (63.9%)
Info: cfl dt = 0.009354034842960357                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4327e+05 | 32768 |      1 | 7.392e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.52897321697566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966488116752094, dt = 0.009354034842960357
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.37 us    (1.8%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 285.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.4%)
Info: cfl dt = 0.009354031134269556                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3686e+05 | 32768 |      1 | 7.501e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.9491187515522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Info: cfl dt = 0.009354028626215581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3983e+05 | 32768 |      1 | 9.643e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.22810482668126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837294714475085, dt = 0.009354028626215581
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 327.93 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.7%)
Info: cfl dt = 0.009354028348760464                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4826e+05 | 32768 |      1 | 9.409e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.89489370854847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772697577096644, dt = 0.009354028348760464
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.55 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 299.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.2%)
Info: cfl dt = 0.009354025334628197                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6832e+05 | 32768 |      1 | 8.897e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 378.5128158864034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1870810041197269, dt = 0.009354025334628197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 327.74 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (68.2%)
Info: cfl dt = 0.009354022489516856                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3068e+05 | 32768 |      1 | 7.608e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.59209510901087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350294543551, dt = 0.009354022489516856
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 355.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.2%)
Info: cfl dt = 0.00935402151680195                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4376e+05 | 32768 |      1 | 7.384e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.04023890594 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578905194387195, dt = 0.00935402151680195
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.90 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 339.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.3%)
Info: cfl dt = 0.009354019699335154                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4093e+05 | 32768 |      1 | 7.432e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.12664132096853 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151430734606739, dt = 0.009354019699335154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 360.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (66.9%)
Info: cfl dt = 0.009354016647241722                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4306e+05 | 32768 |      1 | 7.396e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.32124919839623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449709316000907, dt = 0.009354016647241722
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.59 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 332.42 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.4%)
Info: cfl dt = 0.009354015099560641                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1887e+05 | 32768 |      1 | 7.823e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.45666912221833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 327.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.3%)
Info: cfl dt = 0.009354014475617959                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4613e+05 | 32768 |      1 | 7.345e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.4744220758774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320512490681143, dt = 0.009354014475617959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 289.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.3%)
Info: cfl dt = 0.009354011267904512                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4431e+05 | 32768 |      1 | 7.375e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.604350228552 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591393824294, dt = 0.009354011267904512
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.38 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 297.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (59.6%)
Info: cfl dt = 0.009354009194280097                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3846e+05 | 32768 |      1 | 7.473e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.592197230649 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191315065033394, dt = 0.009354009194280097
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.74 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 303.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (67.2%)
Info: cfl dt = 0.00935400914737758                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2722e+05 | 32768 |      1 | 7.670e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.03734561346585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267159844614, dt = 0.00935400914737758
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 320.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (66.9%)
Info: cfl dt = 0.009354006186411409                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3511e+05 | 32768 |      1 | 7.531e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.1462022149252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 291.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.6%)
Info: cfl dt = 0.009354003694237728                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4301e+05 | 32768 |      1 | 7.397e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.2677993475136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997517517840304, dt = 0.009354003694237728
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.72 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 326.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (66.1%)
Info: cfl dt = 0.009354002913477454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2462e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.59747811620184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932917887264077, dt = 0.009354002913477454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 333.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.009354001038625152                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2221e+05 | 32768 |      1 | 7.761e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.89180821142327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086831817861182, dt = 0.009354001038625152
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 352.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
Info: cfl dt = 0.009353998302565909                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2560e+05 | 32768 |      1 | 7.699e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.3675720608537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803718282474336, dt = 0.009353998302565909
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 331.75 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.8%)
Info: cfl dt = 0.009353996954119235                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2541e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.4081282135327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739118112730925, dt = 0.009353996954119235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 307.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Info: cfl dt = 0.009353996192093612                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3104e+05 | 32768 |      1 | 9.899e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.1967719163408 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367451780814285, dt = 0.009353996192093612
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 297.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (64.6%)
Info: cfl dt = 0.009353993265190767                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2850e+05 | 32768 |      1 | 9.975e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.5836698107582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460991742735221, dt = 0.009353993265190767
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    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 308.68 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (67.6%)
Info: cfl dt = 0.009353991405825733                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2612e+05 | 32768 |      1 | 1.005e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.13984861078455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545316753871287, dt = 0.009353991405825733
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.90 us    (1.8%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 303.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.5%)
Info: cfl dt = 0.00935399143176134                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2659e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.62764143875575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648071589445386, dt = 0.00935399143176134
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.65 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 334.73 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.0%)
Info: cfl dt = 0.009353988558522992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2485e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.83208818991693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416115037629993, dt = 0.009353988558522992
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.72 us    (1.9%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 289.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.6%)
Info: cfl dt = 0.009353986265519348                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2136e+05 | 32768 |      1 | 1.020e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.2468628395827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835151389348229, dt = 0.009353986265519348
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.73 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.29 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (59.0%)
Info: cfl dt = 0.0093539855673285                                        [amr::basegodunov][rank=0]
Info: Timestep 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.3900e+05 | 32768 |      1 | 7.464e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.1460987263843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691252003423, dt = 0.0093539855673285
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 337.46 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.0%)
Info: cfl dt = 0.009353983700068107                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4286e+05 | 32768 |      1 | 7.399e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.1043231123316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231107676708, dt = 0.009353983700068107
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.99 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 340.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Info: cfl dt = 0.009353981156521212                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2955e+05 | 32768 |      1 | 9.943e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.6667150237402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157709446773894, dt = 0.009353981156521212
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 342.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.7%)
Info: cfl dt = 0.00935397991315696                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9838e+05 | 32768 |      1 | 8.225e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 409.3996841946298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093107562426013, dt = 0.00935397991315696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 312.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.5%)
Info: cfl dt = 0.009353979091786247                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2429e+05 | 32768 |      1 | 1.010e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.26405677580084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302850555374171, dt = 0.009353979091786247
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.59 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 309.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
Info: cfl dt = 0.009353976347375923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9092e+05 | 32768 |      1 | 8.382e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 401.7338156832211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963903462920334, dt = 0.009353976347375923
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.74 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 362.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Info: cfl dt = 0.00935397461642016                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2568e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.6916293878699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489930109765793, dt = 0.00935397461642016
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.22 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 371.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.4%)
Info: cfl dt = 0.009353974668293501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7439e+05 | 32768 |      1 | 8.752e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 384.7491406277278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834698559299947, dt = 0.009353974668293501
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.59 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 298.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (65.3%)
Info: cfl dt = 0.009353971881599964                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2690e+05 | 32768 |      1 | 7.676e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.7118531022724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467700960261293, dt = 0.009353971881599964
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.88 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 303.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.6%)
Info: cfl dt = 0.009353969722786026                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1991e+05 | 32768 |      1 | 7.804e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.5248931520817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705493214289296, dt = 0.009353969722786026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 335.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.7%)
Info: cfl dt = 0.009353969074925923                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2954e+05 | 32768 |      1 | 7.629e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.42277694880784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486408901865679, dt = 0.009353969074925923
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.53 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 298.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.6%)
Info: cfl dt = 0.009353967229821052                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4306e+05 | 32768 |      1 | 7.396e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.3138783133498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957628709406049, dt = 0.009353967229821052
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 360.89 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (60.7%)
Info: cfl dt = 0.009353964823264992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3027e+05 | 32768 |      1 | 9.922e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.40041717817564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505116838170426, dt = 0.009353964823264992
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.54 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 289.71 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.8%)
Info: cfl dt = 0.009353963655442672                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3280e+05 | 32768 |      1 | 7.571e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.7691087201876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.514470802993691, dt = 0.009353963655442672
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 308.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (69.5%)
Info: cfl dt = 0.00935396279929126                                       [amr::basegodunov][rank=0]
Info: Timestep 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.5615e+05 | 32768 |      1 | 7.184e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.7630235543201 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238247666491337, dt = 0.00935396279929126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 341.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.2%)
Info: cfl dt = 0.009353960190414906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4449e+05 | 32768 |      1 | 9.512e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.0180513449172 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331787294484249, dt = 0.009353960190414906
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.89 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 308.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.2%)
Info: cfl dt = 0.009353958557985011                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7989e+05 | 32768 |      1 | 8.626e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 390.3980331793327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425326896388398, dt = 0.009353958557985011
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.51 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 326.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
Info: cfl dt = 0.009353958637581792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2525e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.24534772479456 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518866481968249, dt = 0.009353958637581792
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.70 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 359.21 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (66.7%)
Info: cfl dt = 0.00935395591508433                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0709e+05 | 32768 |      1 | 1.067e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.58411997961105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406068344067, dt = 0.00935395591508433
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.78 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 330.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.6%)
Info: cfl dt = 0.00935395386329704                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0430e+05 | 32768 |      1 | 1.077e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.7190044145736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570594562749491, dt = 0.00935395386329704
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.44 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 355.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.6%)
Info: cfl dt = 0.009353953266273791                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1103e+05 | 32768 |      1 | 1.054e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.6296246771771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799485166127881, dt = 0.009353953266273791
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.73 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 327.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.2%)
Info: cfl dt = 0.009353951431714257                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2167e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.56125839473594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893024698790619, dt = 0.009353951431714257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 297.73 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.8%)
Info: cfl dt = 0.009353949136988296                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2729e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.3442217896474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986564213107761, dt = 0.009353949136988296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 292.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (63.1%)
Info: cfl dt = 0.009353948041912407                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2929e+05 | 32768 |      1 | 9.951e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.394331881785 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080103704477644, dt = 0.009353948041912407
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     : 26.12 us   (7.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 301.03 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.4%)
Info: cfl dt = 0.009353947147858147                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3709e+05 | 32768 |      1 | 9.721e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.4169272729415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173643184896768, dt = 0.009353947147858147
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.77 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 301.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.7%)
Info: cfl dt = 0.009353944651666042                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3066e+05 | 32768 |      1 | 9.910e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.8095273433644 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.626718265637535, dt = 0.009353944651666042
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.92 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 333.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.1%)
Info: cfl dt = 0.009353943111457312                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9471e+05 | 32768 |      1 | 8.302e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 405.6229302621058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.636072210289201, dt = 0.009353943111457312
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 297.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.8%)
Info: cfl dt = 0.0093539431843481                                        [amr::basegodunov][rank=0]
Info: Timestep 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.5479e+05 | 32768 |      1 | 7.205e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.3639121211923 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454261534006583, dt = 0.0093539431843481
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.70 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 330.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.1%)
Info: cfl dt = 0.009353940527806246                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5284e+05 | 32768 |      1 | 9.287e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.5937934503471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547800965850065, dt = 0.009353940527806246
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.90 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 336.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
Info: cfl dt = 0.009353938577386775                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2501e+05 | 32768 |      1 | 1.008e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.001662600815 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641340371128127, dt = 0.009353938577386775
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 303.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.8%)
Info: cfl dt = 0.009353938049362577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3558e+05 | 32768 |      1 | 9.765e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.86129978932775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734879756901995, dt = 0.009353938049362577
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     : 7.65 us    (2.4%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 301.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (62.3%)
Info: cfl dt = 0.009353936204036508                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2532e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.3205401880811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.682841913739562, dt = 0.009353936204036508
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 299.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (61.3%)
Info: cfl dt = 0.009353934010554276                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3107e+05 | 32768 |      1 | 9.898e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.2230939925187 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921958499435985, dt = 0.009353934010554276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 323.25 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (67.9%)
Info: cfl dt = 0.009353932997166782                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3278e+05 | 32768 |      1 | 7.572e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.74774763500767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015497839541528, dt = 0.009353932997166782
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 320.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (67.9%)
Info: cfl dt = 0.009353932050534617                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3483e+05 | 32768 |      1 | 7.536e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.850704528994 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109037169513196, dt = 0.009353932050534617
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.96 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 349.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
Info: cfl dt = 0.0093539296561337                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2455e+05 | 32768 |      1 | 1.010e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.52797178771493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202576490018542, dt = 0.0093539296561337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 309.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (64.4%)
Info: cfl dt = 0.009353928211996133                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0533e+05 | 32768 |      1 | 8.084e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.5355965135862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296115786579879, dt = 0.009353928211996133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 351.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (71.2%)
Info: cfl dt = 0.00935392819662582                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0555e+05 | 32768 |      1 | 1.072e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.00007335887096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.738965506869984, dt = 0.00935392819662582
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 300.76 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.8%)
Info: cfl dt = 0.009353925638163098                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0750e+05 | 32768 |      1 | 1.066e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.00536427833987 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483194350666098, dt = 0.009353925638163098
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 296.28 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (64.1%)
Info: cfl dt = 0.009353923795675559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0068e+05 | 32768 |      1 | 1.090e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.99796253731597 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.26 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (66.6%)
Info: cfl dt = 0.0093539233636501                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0353e+05 | 32768 |      1 | 1.080e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.9258751175137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670272845004484, dt = 0.0093539233636501
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.95 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 339.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
Info: cfl dt = 0.009353921484731293                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9206e+05 | 32768 |      1 | 1.122e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.13289712652966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763812078640986, dt = 0.009353921484731293
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.81 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 306.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.4%)
Info: cfl dt = 0.009353919389081413                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0316e+05 | 32768 |      1 | 1.081e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.54813566173215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857351293488298, dt = 0.009353919389081413
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 340.58 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.3%)
Info: cfl dt = 0.009353918470859347                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0511e+05 | 32768 |      1 | 1.074e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.5420671559134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950890487379112, dt = 0.009353918470859347
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.89 us    (1.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 301.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (65.6%)
Info: cfl dt = 0.009353917453835162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0836e+05 | 32768 |      1 | 1.063e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.88918095626497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044429672087705, dt = 0.009353917453835162
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.5%)
   LB compute        : 304.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
Info: cfl dt = 0.00935391515638981                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0536e+05 | 32768 |      1 | 1.073e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.80722148789346 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137968846626057, dt = 0.00935391515638981
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 362.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (64.8%)
Info: cfl dt = 0.009353913816049452                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1373e+05 | 32768 |      1 | 1.044e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.40504105303876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231507998189955, dt = 0.009353913816049452
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.78 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 292.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.3%)
Info: cfl dt = 0.009353913698987413                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1467e+05 | 32768 |      1 | 1.041e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.37603738838953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.832504713635045, dt = 0.009353913698987413
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 297.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Info: cfl dt = 0.009353911233459421                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0729e+05 | 32768 |      1 | 1.066e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.7849403200463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418586273340324, dt = 0.009353911233459421
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 354.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
Info: cfl dt = 0.00935390950272671                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1849e+05 | 32768 |      1 | 1.029e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.29749277008926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512125385674918, dt = 0.00935390950272671
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 297.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (60.8%)
Info: cfl dt = 0.009353909186275275                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1327e+05 | 32768 |      1 | 1.046e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.9326852592005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605664480702185, dt = 0.009353909186275275
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 294.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.6%)
Info: cfl dt = 0.009353907250932138                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1428e+05 | 32768 |      1 | 1.043e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.9731073688071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699203572564939, dt = 0.009353907250932138
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.99 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 329.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.0%)
Info: cfl dt = 0.009353905252065281                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0905e+05 | 32768 |      1 | 1.060e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.59246206094326 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.879274264507426, dt = 0.009353905252065281
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 298.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.2%)
Info: cfl dt = 0.009353904440596446                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2144e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.3266594506627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886281697594912, dt = 0.009353904440596446
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 296.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.9%)
Info: cfl dt = 0.009353903334550103                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2153e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.42525432023587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979820742000877, dt = 0.009353903334550103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 326.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.5%)
Info: cfl dt = 0.009353901131915419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1898e+05 | 32768 |      1 | 1.027e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.8006330062484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073359775346378, dt = 0.009353901131915419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 337.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Info: cfl dt = 0.00935389990270608                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1848e+05 | 32768 |      1 | 1.029e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.289679600069 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166898786665532, dt = 0.00935389990270608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 339.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (61.1%)
Info: cfl dt = 0.009353899668966202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1822e+05 | 32768 |      1 | 1.030e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.02128785017015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260437785692592, dt = 0.009353899668966202
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 298.99 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.3%)
Info: cfl dt = 0.00935389729392757                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1236e+05 | 32768 |      1 | 1.049e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.9950358812471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353976782382254, dt = 0.00935389729392757
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.81 us    (1.8%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 297.84 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.7%)
Info: cfl dt = 0.009353895679256463                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2023e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0812169753262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447515755321529, dt = 0.009353895679256463
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.74 us    (1.8%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 295.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (66.6%)
Info: cfl dt = 0.009353895494558832                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0786e+05 | 32768 |      1 | 1.064e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.37533201063405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541054712114094, dt = 0.009353895494558832
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.71 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 332.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
Info: cfl dt = 0.009353893483200221                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1441e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.10555185611884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634593667059682, dt = 0.009353893483200221
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.77 us    (1.8%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 302.11 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.83 us   (94.5%)
Info: cfl dt = 0.00935389158101233                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1773e+05 | 32768 |      1 | 1.031e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.5178134367376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728132601891685, dt = 0.00935389158101233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 361.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.6%)
Info: cfl dt = 0.009353890885690979                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1144e+05 | 32768 |      1 | 1.052e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.05177484306506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821671517701808, dt = 0.009353890885690979
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.98 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 303.99 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (62.2%)
Info: cfl dt = 0.009353889674092572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1450e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.1954266512006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915210426558717, dt = 0.00847895734412829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 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.32 us    (0.4%)
   LB compute        : 302.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.9%)
Info: cfl dt = 0.009353887732682697                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0786e+05 | 32768 |      1 | 1.064e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 286.78021920622996 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 62.469007770000005 (s)                                   [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.12 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.44 us    (54.9%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (0.4%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 327.42 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.9%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.56 us    (1.0%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 348.59 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 1.97 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.0%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0925e+05 | 32768 |      1 | 1.060e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 313.05 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (62.8%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0459e+05 | 32768 |      1 | 1.076e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.01974710280905 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.1%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 296.85 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.7%)
Info: cfl dt = 0.009354069799318255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9936e+05 | 32768 |      1 | 1.095e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.64012062365003 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354069799318255
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.45 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 327.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.1%)
Info: cfl dt = 0.009354068824705755                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0078e+05 | 32768 |      1 | 1.089e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.1049963078273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 289.48 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.99 us    (65.5%)
Info: cfl dt = 0.009354063115090478                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0859e+05 | 32768 |      1 | 1.062e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.1289236963133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0374162949309969, dt = 0.009354063115090478
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 342.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.3%)
Info: cfl dt = 0.009354059722878038                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1208e+05 | 32768 |      1 | 1.050e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.71312392370123 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035804608738, dt = 0.009354059722878038
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 310.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.8%)
Info: cfl dt = 0.009354059540598522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0281e+05 | 32768 |      1 | 1.082e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1877982526426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612441776896542, dt = 0.009354059540598522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 300.58 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.3%)
Info: cfl dt = 0.009354054967483448                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0122e+05 | 32768 |      1 | 1.088e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.5583544602674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847730956394, dt = 0.009354054967483448
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.93 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 343.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.1%)
Info: cfl dt = 0.009354051404497547                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0038e+05 | 32768 |      1 | 1.091e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.69190705702704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253227704739, dt = 0.009354051404497547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 299.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.0%)
Info: cfl dt = 0.009354050526566368                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0289e+05 | 32768 |      1 | 1.082e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.2734277153526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418658368154494, dt = 0.009354050526566368
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.77 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 332.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.7%)
Info: cfl dt = 0.009354047505936595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7878e+05 | 32768 |      1 | 8.651e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 389.25702350212146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935406342081113, dt = 0.009354047505936595
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.94 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 357.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.9%)
Info: cfl dt = 0.0093540438900453                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9131e+05 | 32768 |      1 | 8.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.1347893855859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 333.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.2%)
Info: cfl dt = 0.009354042436406503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1677e+05 | 32768 |      1 | 1.034e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.5367853436116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224872560409319, dt = 0.009354042436406503
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.45 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.4%)
Info: cfl dt = 0.009354040823324547                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1140e+05 | 32768 |      1 | 7.965e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.7806766898728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160276804049969, dt = 0.009354040823324547
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.79 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 312.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (61.7%)
Info: cfl dt = 0.009354037151122919                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2262e+05 | 32768 |      1 | 7.754e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.3078511156454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095680886382424, dt = 0.009354037151122919
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.69 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 310.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.3%)
Info: cfl dt = 0.009354035152573763                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2351e+05 | 32768 |      1 | 7.737e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.22157374477723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 318.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.4%)
Info: cfl dt = 0.009354034842960357                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2284e+05 | 32768 |      1 | 7.749e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.53936120958394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966488116752094, dt = 0.009354034842960357
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.77 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 382.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.1%)
Info: cfl dt = 0.009354031134269556                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7004e+05 | 32768 |      1 | 8.855e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 380.2735902887956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
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.54 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 349.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.8%)
Info: cfl dt = 0.009354028626215581                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2437e+05 | 32768 |      1 | 7.722e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.1058908595931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837294714475085, dt = 0.009354028626215581
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 319.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.5%)
Info: cfl dt = 0.009354028348760464                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2777e+05 | 32768 |      1 | 7.660e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.60478736712275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772697577096644, dt = 0.009354028348760464
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.87 us    (1.9%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 293.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Info: cfl dt = 0.009354025334628197                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4037e+05 | 32768 |      1 | 7.441e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.55080833875616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1870810041197269, dt = 0.009354025334628197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 323.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.2%)
Info: cfl dt = 0.009354022489516856                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2712e+05 | 32768 |      1 | 7.672e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.93433923607387 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350294543551, dt = 0.009354022489516856
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.53 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.8%)
Info: cfl dt = 0.00935402151680195                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2340e+05 | 32768 |      1 | 7.739e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.10838232015146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578905194387195, dt = 0.00935402151680195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 316.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (62.3%)
Info: cfl dt = 0.009354019699335154                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4019e+05 | 32768 |      1 | 7.444e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.3706735193483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151430734606739, dt = 0.009354019699335154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 313.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (67.8%)
Info: cfl dt = 0.009354016647241722                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4140e+05 | 32768 |      1 | 7.424e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.6125478517442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449709316000907, dt = 0.009354016647241722
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 329.33 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
Info: cfl dt = 0.009354015099560641                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4586e+05 | 32768 |      1 | 7.349e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.1925167120519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
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.82 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 298.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.0%)
Info: cfl dt = 0.009354014475617959                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4627e+05 | 32768 |      1 | 7.343e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.6190031262907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320512490681143, dt = 0.009354014475617959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (64.4%)
Info: cfl dt = 0.009354011267904512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1929e+05 | 32768 |      1 | 1.026e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.1192152186794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591393824294, dt = 0.009354011267904512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 353.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (69.0%)
Info: cfl dt = 0.009354009194280097                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0275e+05 | 32768 |      1 | 1.082e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1242162515091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191315065033394, dt = 0.009354009194280097
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.60 us    (1.7%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 308.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.6%)
Info: cfl dt = 0.00935400914737758                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5568e+05 | 32768 |      1 | 9.213e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 365.5158885773362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267159844614, dt = 0.00935400914737758
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.76 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 339.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.5%)
Info: cfl dt = 0.009354006186411409                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5536e+05 | 32768 |      1 | 7.196e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.9607800511482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
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.55 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 291.56 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.5%)
Info: cfl dt = 0.009354003694237728                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4786e+05 | 32768 |      1 | 7.317e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.24662796530095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997517517840304, dt = 0.009354003694237728
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 270.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.4%)
Info: cfl dt = 0.009354002913477454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9930e+05 | 32768 |      1 | 8.206e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 410.34250882791974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932917887264077, dt = 0.009354002913477454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 274.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.5%)
Info: cfl dt = 0.009354001038625152                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1934e+05 | 32768 |      1 | 7.814e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.9437170808596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086831817861182, dt = 0.009354001038625152
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.56 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 277.76 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.7%)
Info: cfl dt = 0.009353998302565909                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1980e+05 | 32768 |      1 | 7.806e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.4156195493649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803718282474336, dt = 0.009353998302565909
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.70 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 342.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.2%)
Info: cfl dt = 0.009353996954119235                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1810e+05 | 32768 |      1 | 7.837e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429.6641745513612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739118112730925, dt = 0.009353996954119235
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.57 us    (1.9%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 281.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.1%)
Info: cfl dt = 0.009353996192093612                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2431e+05 | 32768 |      1 | 7.723e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.0515699653682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367451780814285, dt = 0.009353996192093612
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 285.66 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (63.6%)
Info: cfl dt = 0.009353993265190767                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1490e+05 | 32768 |      1 | 7.898e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.3743951645464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460991742735221, dt = 0.009353993265190767
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.55 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 277.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.8%)
Info: cfl dt = 0.009353991405825733                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2040e+05 | 32768 |      1 | 7.794e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.03078742058983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545316753871287, dt = 0.009353991405825733
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.49 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 336.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.6%)
Info: cfl dt = 0.00935399143176134                                       [amr::basegodunov][rank=0]
Info: Timestep 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.1999e+05 | 32768 |      1 | 7.802e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.61095390003135 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648071589445386, dt = 0.00935399143176134
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.77 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 290.34 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.6%)
Info: cfl dt = 0.009353988558522992                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2705e+05 | 32768 |      1 | 7.673e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.8649439850027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416115037629993, dt = 0.009353988558522992
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.96 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 290.14 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.4%)
Info: cfl dt = 0.009353986265519348                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2339e+05 | 32768 |      1 | 7.739e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.1034814094511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835151389348229, dt = 0.009353986265519348
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     : 33.49 us   (10.0%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 286.05 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.7%)
Info: cfl dt = 0.0093539855673285                                        [amr::basegodunov][rank=0]
Info: Timestep 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.1644e+05 | 32768 |      1 | 7.869e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.9578568696243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691252003423, dt = 0.0093539855673285
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.49 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 306.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
Info: cfl dt = 0.009353983700068107                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9175e+05 | 32768 |      1 | 8.365e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.5850157643939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231107676708, dt = 0.009353983700068107
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.63 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 308.82 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.7%)
Info: cfl dt = 0.009353981156521212                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2245e+05 | 32768 |      1 | 7.757e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.1344367733279 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157709446773894, dt = 0.009353981156521212
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.59 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 306.62 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Info: cfl dt = 0.00935397991315696                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2558e+05 | 32768 |      1 | 7.700e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.35607113277297 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093107562426013, dt = 0.00935397991315696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 289.53 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.3%)
Info: cfl dt = 0.009353979091786247                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2708e+05 | 32768 |      1 | 7.672e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.8974707657175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302850555374171, dt = 0.009353979091786247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 282.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (61.2%)
Info: cfl dt = 0.009353976347375923                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0299e+05 | 32768 |      1 | 8.131e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 414.13286446154444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963903462920334, dt = 0.009353976347375923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 306.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.5%)
Info: cfl dt = 0.00935397461642016                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2656e+05 | 32768 |      1 | 7.682e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.35626568673143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489930109765793, dt = 0.00935397461642016
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.80 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 310.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.7%)
Info: cfl dt = 0.009353974668293501                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3005e+05 | 32768 |      1 | 7.620e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.94055111653114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834698559299947, dt = 0.009353974668293501
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.68 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 311.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (68.6%)
Info: cfl dt = 0.009353971881599964                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2658e+05 | 32768 |      1 | 7.682e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.37956701108794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467700960261293, dt = 0.009353971881599964
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.28 us    (1.4%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 352.69 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.7%)
Info: cfl dt = 0.009353969722786026                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2686e+05 | 32768 |      1 | 7.677e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.66127111090566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705493214289296, dt = 0.009353969722786026
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.78 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 309.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Info: cfl dt = 0.009353969074925923                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2517e+05 | 32768 |      1 | 7.707e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.93168655379844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486408901865679, dt = 0.009353969074925923
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.68 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 310.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.2%)
Info: cfl dt = 0.009353967229821052                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3008e+05 | 32768 |      1 | 7.619e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.97201763527676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957628709406049, dt = 0.009353967229821052
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.93 us    (1.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 294.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.0%)
Info: cfl dt = 0.009353964823264992                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2460e+05 | 32768 |      1 | 7.717e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.34323932028656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505116838170426, dt = 0.009353964823264992
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 273.49 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.88 us    (65.3%)
Info: cfl dt = 0.009353963655442672                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2718e+05 | 32768 |      1 | 7.671e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.9925488777286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.514470802993691, dt = 0.009353963655442672
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 319.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (62.4%)
Info: cfl dt = 0.00935396279929126                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4032e+05 | 32768 |      1 | 7.442e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.5025318465041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238247666491337, dt = 0.00935396279929126
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.78 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 347.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Info: cfl dt = 0.009353960190414906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1357e+05 | 32768 |      1 | 1.045e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.23889745530545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331787294484249, dt = 0.009353960190414906
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.72 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 366.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.009353958557985011                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2332e+05 | 32768 |      1 | 1.014e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.25690591606434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425326896388398, dt = 0.009353958557985011
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.72 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 342.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.2%)
Info: cfl dt = 0.009353958637581792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1116e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.76361644302824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518866481968249, dt = 0.009353958637581792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 314.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (59.2%)
Info: cfl dt = 0.00935395591508433                                       [amr::basegodunov][rank=0]
Info: Timestep 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.0233e+05 | 32768 |      1 | 8.145e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.45202678868293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406068344067, dt = 0.00935395591508433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 316.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.1%)
Info: cfl dt = 0.00935395386329704                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1887e+05 | 32768 |      1 | 1.028e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.6837146185435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570594562749491, dt = 0.00935395386329704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 317.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.8%)
Info: cfl dt = 0.009353953266273791                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0816e+05 | 32768 |      1 | 8.028e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 419.45222276768385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799485166127881, dt = 0.009353953266273791
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.54 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 351.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.0%)
Info: cfl dt = 0.009353951431714257                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1253e+05 | 32768 |      1 | 7.943e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423.93885380138113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893024698790619, dt = 0.009353951431714257
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.22 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 326.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.1%)
Info: cfl dt = 0.009353949136988296                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1433e+05 | 32768 |      1 | 7.909e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.78798737609554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986564213107761, dt = 0.009353949136988296
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.68 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 351.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.3%)
Info: cfl dt = 0.009353948041912407                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5405e+05 | 32768 |      1 | 9.255e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.8429412828747 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080103704477644, dt = 0.009353948041912407
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.44 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 330.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.0%)
Info: cfl dt = 0.009353947147858147                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4409e+05 | 32768 |      1 | 7.379e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.3765074364636 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173643184896768, dt = 0.009353947147858147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 359.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
Info: cfl dt = 0.009353944651666042                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1436e+05 | 32768 |      1 | 7.908e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.8175507245559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.626718265637535, dt = 0.009353944651666042
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.86 us    (1.1%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 524.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (67.8%)
Info: cfl dt = 0.009353943111457312                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1913e+05 | 32768 |      1 | 7.818e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.72532599675145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.636072210289201, dt = 0.009353943111457312
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.81 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 307.30 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.9%)
Info: cfl dt = 0.0093539431843481                                        [amr::basegodunov][rank=0]
Info: Timestep 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.1573e+05 | 32768 |      1 | 7.882e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.2249006000731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454261534006583, dt = 0.0093539431843481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 296.78 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.3%)
Info: cfl dt = 0.009353940527806246                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1218e+05 | 32768 |      1 | 7.950e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423.57921330791714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547800965850065, dt = 0.009353940527806246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 333.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.009353938577386775                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1931e+05 | 32768 |      1 | 7.815e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.9016189765406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641340371128127, dt = 0.009353938577386775
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 303.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (62.8%)
Info: cfl dt = 0.009353938049362577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1814e+05 | 32768 |      1 | 1.030e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.93811141798625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734879756901995, dt = 0.009353938049362577
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.20 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 333.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Info: cfl dt = 0.009353936204036508                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0749e+05 | 32768 |      1 | 1.066e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.9976698246087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.682841913739562, dt = 0.009353936204036508
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.95 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 327.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (59.3%)
Info: cfl dt = 0.009353934010554276                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0974e+05 | 32768 |      1 | 7.997e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421.07221487668124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921958499435985, dt = 0.009353934010554276
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.78 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 346.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Info: cfl dt = 0.009353932997166782                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3499e+05 | 32768 |      1 | 7.533e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.02284985416526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015497839541528, dt = 0.009353932997166782
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.79 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 299.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.7%)
Info: cfl dt = 0.009353932050534617                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3367e+05 | 32768 |      1 | 7.556e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.65860292470796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109037169513196, dt = 0.009353932050534617
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.84 us    (2.0%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 267.72 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.3%)
Info: cfl dt = 0.0093539296561337                                        [amr::basegodunov][rank=0]
Info: Timestep 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.3950e+05 | 32768 |      1 | 7.456e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.65866745031184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202576490018542, dt = 0.0093539296561337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 283.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.4%)
Info: cfl dt = 0.009353928211996133                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3583e+05 | 32768 |      1 | 7.519e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.8816154067587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296115786579879, dt = 0.009353928211996133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (69.5%)
Info: cfl dt = 0.00935392819662582                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3625e+05 | 32768 |      1 | 7.511e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.31154396954787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.738965506869984, dt = 0.00935392819662582
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 310.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.2%)
Info: cfl dt = 0.009353925638163098                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0565e+05 | 32768 |      1 | 8.078e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.8692604859399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483194350666098, dt = 0.009353925638163098
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.56 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 347.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (67.7%)
Info: cfl dt = 0.009353923795675559                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0412e+05 | 32768 |      1 | 8.108e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.29942438555713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Info: cfl dt = 0.0093539233636501                                        [amr::basegodunov][rank=0]
Info: Timestep 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.2487e+05 | 32768 |      1 | 7.712e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.62071691095986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670272845004484, dt = 0.0093539233636501
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.69 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 296.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
Info: cfl dt = 0.009353921484731293                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2310e+05 | 32768 |      1 | 7.745e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.79645501507736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763812078640986, dt = 0.009353921484731293
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.87 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 292.56 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.9%)
Info: cfl dt = 0.009353919389081413                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2312e+05 | 32768 |      1 | 7.744e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.8215031930313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857351293488298, dt = 0.009353919389081413
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.93 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 358.21 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.4%)
Info: cfl dt = 0.009353918470859347                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0692e+05 | 32768 |      1 | 8.053e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 418.168270501126 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950890487379112, dt = 0.009353918470859347
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.90 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 349.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.2%)
Info: cfl dt = 0.009353917453835162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1399e+05 | 32768 |      1 | 1.044e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.6717320343029 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044429672087705, dt = 0.009353917453835162
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.70 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 300.09 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (63.8%)
Info: cfl dt = 0.00935391515638981                                       [amr::basegodunov][rank=0]
Info: Timestep 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.1183e+05 | 32768 |      1 | 7.957e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423.2151067827068 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137968846626057, dt = 0.00935391515638981
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.92 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 316.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.9%)
Info: cfl dt = 0.009353913816049452                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1763e+05 | 32768 |      1 | 7.846e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429.1735620983598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231507998189955, dt = 0.009353913816049452
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.89 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 294.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
Info: cfl dt = 0.009353913698987413                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0834e+05 | 32768 |      1 | 8.025e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 419.63360301615523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.832504713635045, dt = 0.009353913698987413
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 327.58 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.8%)
Info: cfl dt = 0.009353911233459421                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0411e+05 | 32768 |      1 | 8.109e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.2861105953616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418586273340324, dt = 0.009353911233459421
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 301.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.6%)
Info: cfl dt = 0.00935390950272671                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9199e+05 | 32768 |      1 | 8.359e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.8300585111107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512125385674918, dt = 0.00935390950272671
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.54 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 301.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.6%)
Info: cfl dt = 0.009353909186275275                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0696e+05 | 32768 |      1 | 8.052e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 418.2129436635241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605664480702185, dt = 0.009353909186275275
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.74 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 289.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (64.0%)
Info: cfl dt = 0.009353907250932138                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0709e+05 | 32768 |      1 | 8.049e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 418.35060978116593 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699203572564939, dt = 0.009353907250932138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 351.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.7%)
Info: cfl dt = 0.009353905252065281                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0422e+05 | 32768 |      1 | 8.106e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.4007471148701 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.879274264507426, dt = 0.009353905252065281
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.83 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 343.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Info: cfl dt = 0.009353904440596446                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0630e+05 | 32768 |      1 | 8.065e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 417.5353389522618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886281697594912, dt = 0.009353904440596446
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.88 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 276.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.2%)
Info: cfl dt = 0.009353903334550103                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0795e+05 | 32768 |      1 | 8.032e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 419.231157009429 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979820742000877, dt = 0.009353903334550103
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.73 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 309.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.3%)
Info: cfl dt = 0.009353901131915419                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1085e+05 | 32768 |      1 | 7.976e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.21441204841096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073359775346378, dt = 0.009353901131915419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 337.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.3%)
Info: cfl dt = 0.00935389990270608                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1132e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.9247237785626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166898786665532, dt = 0.00935389990270608
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.95 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 301.88 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (63.9%)
Info: cfl dt = 0.009353899668966202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0875e+05 | 32768 |      1 | 1.061e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.29053732583134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260437785692592, dt = 0.009353899668966202
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     : 28.75 us   (8.1%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 311.31 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.0%)
Info: cfl dt = 0.00935389729392757                                       [amr::basegodunov][rank=0]
Info: Timestep 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.1871e+05 | 32768 |      1 | 7.826e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.2902852206208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353976782382254, dt = 0.00935389729392757
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.89 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 306.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.5%)
Info: cfl dt = 0.009353895679256463                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1987e+05 | 32768 |      1 | 7.804e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.47426050439765 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447515755321529, dt = 0.009353895679256463
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.24 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 302.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.6%)
Info: cfl dt = 0.009353895494558832                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3735e+05 | 32768 |      1 | 7.492e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.4376887185571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541054712114094, dt = 0.009353895494558832
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (69.8%)
Info: cfl dt = 0.009353893483200221                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2511e+05 | 32768 |      1 | 7.708e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.86671664902104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634593667059682, dt = 0.009353893483200221
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 280.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (66.6%)
Info: cfl dt = 0.00935389158101233                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3330e+05 | 32768 |      1 | 7.563e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.2760927876534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728132601891685, dt = 0.00935389158101233
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.95 us    (1.8%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 318.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (66.1%)
Info: cfl dt = 0.009353890885690979                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1595e+05 | 32768 |      1 | 7.878e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.44595885395756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821671517701808, dt = 0.009353890885690979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
Info: cfl dt = 0.009353889674092572                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3463e+05 | 32768 |      1 | 7.539e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.6510633087427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915210426558717, dt = 0.00847895734412829
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.91 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 309.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.9%)
Info: cfl dt = 0.009353887732682697                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2183e+05 | 32768 |      1 | 1.018e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.79358997747016 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 71.680740548 (s)                                         [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.13 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.82 us    (61.8%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (0.4%)
   patch tree reduce : 841.00 ns  (0.3%)
   gen split merge   : 762.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 290.78 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (0.9%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.35 us    (1.0%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 323.10 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 1.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.1%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3585e+05 | 32768 |      1 | 9.757e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.60 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 361.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (71.4%)
Info: cfl dt = 0.009354078154867489                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3243e+05 | 32768 |      1 | 9.857e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.6328209970022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
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.99 us    (2.0%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 275.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
Info: cfl dt = 0.009354073115995854                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8044e+05 | 32768 |      1 | 8.613e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 390.9630018663997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354073115995854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 279.29 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (62.0%)
Info: cfl dt = 0.009354069835700992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3450e+05 | 32768 |      1 | 9.796e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.7570870183814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806223479964414, dt = 0.009354069835700992
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.91 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 271.87 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.9%)
Info: cfl dt = 0.009354067793680202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4232e+05 | 32768 |      1 | 9.572e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.78808246770615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.037416304635345135, dt = 0.009354067793680202
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.66 us    (1.9%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 278.17 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.2%)
Info: cfl dt = 0.009354063668939042                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4518e+05 | 32768 |      1 | 7.361e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.5001016869933 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046770372429025334, dt = 0.009354063668939042
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.97 us    (1.9%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 298.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (61.0%)
Info: cfl dt = 0.009354060922640276                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6232e+05 | 32768 |      1 | 7.088e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.1079587417568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612443609796437, dt = 0.009354060922640276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 295.38 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (66.8%)
Info: cfl dt = 0.009354060012819689                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7515e+05 | 32768 |      1 | 8.735e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 385.53376825130897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547849702060465, dt = 0.009354060012819689
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.81 us    (1.9%)
   patch tree reduce : 1.39 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 282.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.4%)
Info: cfl dt = 0.00935405618047606                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3855e+05 | 32768 |      1 | 9.679e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.9177794857288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483255703342434, dt = 0.00935405618047606
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.92 us    (2.0%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 282.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.9%)
Info: cfl dt = 0.009354053649009163                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0289e+05 | 32768 |      1 | 8.133e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 414.03502038353605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866132139004, dt = 0.009354053649009163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 287.85 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.3%)
Info: cfl dt = 0.009354052903820962                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4719e+05 | 32768 |      1 | 7.328e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.56277258332034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066686290957, dt = 0.009354052903820962
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.64 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 345.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (69.4%)
Info: cfl dt = 0.009354049738579461                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4345e+05 | 32768 |      1 | 7.389e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.7166516539591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289471976673054, dt = 0.009354049738579461
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     : 24.02 us   (6.1%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 356.41 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.8%)
Info: cfl dt = 0.00935404717623245                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7564e+05 | 32768 |      1 | 8.723e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 386.03166988252235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224876950531, dt = 0.00935404717623245
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.68 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 336.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
Info: cfl dt = 0.009354046229852642                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3487e+05 | 32768 |      1 | 9.785e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.13151780582024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160281668154245, dt = 0.009354046229852642
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.46 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 289.33 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
Info: cfl dt = 0.009354043982820812                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3721e+05 | 32768 |      1 | 9.717e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.53679457199496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095686291139508, dt = 0.009354043982820812
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 356.21 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
Info: cfl dt = 0.009354041296404839                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3470e+05 | 32768 |      1 | 9.790e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.96408592114847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031090689421588, dt = 0.009354041296404839
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.72 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 309.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
Info: cfl dt = 0.009354040042086443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3665e+05 | 32768 |      1 | 9.734e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.9609096950859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496649481906207, dt = 0.009354040042086443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 298.26 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (63.7%)
Info: cfl dt = 0.009354038722821527                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3788e+05 | 32768 |      1 | 9.698e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.2320007189031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901898823270716, dt = 0.009354038722821527
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.49 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 298.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (64.8%)
Info: cfl dt = 0.009354035904787316                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9734e+05 | 32768 |      1 | 8.247e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 408.3314704290428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683730269555287, dt = 0.009354035904787316
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 306.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.4%)
Info: cfl dt = 0.00935403436362084                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4314e+05 | 32768 |      1 | 7.394e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.4037005321629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.177727062860316, dt = 0.00935403436362084
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.89 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 306.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.8%)
Info: cfl dt = 0.009354033921675843                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3828e+05 | 32768 |      1 | 7.476e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.409906352404 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708109722393684, dt = 0.009354033921675843
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.74 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 344.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.0%)
Info: cfl dt = 0.009354030996332863                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4350e+05 | 32768 |      1 | 7.388e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.7700415255783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643513114561267, dt = 0.009354030996332863
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.36 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 337.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
Info: cfl dt = 0.009354029119607843                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8331e+05 | 32768 |      1 | 8.549e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 393.9101944348836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578916214194554, dt = 0.009354029119607843
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.60 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 344.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.6%)
Info: cfl dt = 0.0093540288238183                                        [amr::basegodunov][rank=0]
Info: Timestep 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.3146e+05 | 32768 |      1 | 7.595e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.3960487885325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514319126155337, dt = 0.0093540288238183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.0%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 317.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (67.9%)
Info: cfl dt = 0.009354026327447806                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3151e+05 | 32768 |      1 | 7.594e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.4520189399914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449722008537168, dt = 0.009354026327447806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 313.36 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.3%)
Info: cfl dt = 0.009354024208256482                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9749e+05 | 32768 |      1 | 8.244e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 408.4827346685378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385124641281949, dt = 0.009354024208256482
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.5%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 389.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.7%)
Info: cfl dt = 0.00935402343205033                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3915e+05 | 32768 |      1 | 7.462e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.2953882554136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320527062107597, dt = 0.00935402343205033
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.79 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.23 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.4%)
Info: cfl dt = 0.009354021848116905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5216e+05 | 32768 |      1 | 9.305e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.8997185229441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525592940531263, dt = 0.009354021848116905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 342.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.6%)
Info: cfl dt = 0.00935401953441118                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1254e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.189805160633 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619133159012432, dt = 0.00935401953441118
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.71 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 354.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.4%)
Info: cfl dt = 0.00935401835293459                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3240e+05 | 32768 |      1 | 9.858e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.5956795727171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712673354356544, dt = 0.00935401835293459
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 311.20 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.6%)
Info: cfl dt = 0.009354017647616326                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2799e+05 | 32768 |      1 | 9.991e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.06088448625246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.280621353788589, dt = 0.009354017647616326
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.60 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 335.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.4%)
Info: cfl dt = 0.009354015140126936                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0467e+05 | 32768 |      1 | 8.097e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.8654541432248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997537143620533, dt = 0.009354015140126936
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.92 us    (1.9%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 293.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Info: cfl dt = 0.009354013648637452                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3446e+05 | 32768 |      1 | 7.542e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.48026914328875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2993293865763323, dt = 0.009354013648637452
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     : 28.85 us   (8.3%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 304.98 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.2%)
Info: cfl dt = 0.009354013607492181                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3518e+05 | 32768 |      1 | 7.530e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.21374618357845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30868340022496976, dt = 0.009354013607492181
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 283.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (67.2%)
Info: cfl dt = 0.009354011034580736                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3863e+05 | 32768 |      1 | 7.471e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.7650553470485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3180374138324619, dt = 0.009354011034580736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 322.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.9%)
Info: cfl dt = 0.00935400923909899                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3179e+05 | 32768 |      1 | 7.589e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.73423752994995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739142486704265, dt = 0.00935400923909899
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.91 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 324.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.9%)
Info: cfl dt = 0.009354008698417722                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4365e+05 | 32768 |      1 | 9.535e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.15261907220855 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674543410614166, dt = 0.009354008698417722
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     : 7.59 us    (2.3%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 306.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.0%)
Info: cfl dt = 0.009354006978541276                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2028e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.1354068856133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460994428045594, dt = 0.009354006978541276
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.84 us    (1.8%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 303.55 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.2%)
Info: cfl dt = 0.009354004953324889                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3349e+05 | 32768 |      1 | 9.826e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.7128804929617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554534497831007, dt = 0.009354004953324889
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.93 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
Info: cfl dt = 0.009354004044584054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3387e+05 | 32768 |      1 | 9.815e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.105117314274 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480745473642556, dt = 0.009354004044584054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 309.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
Info: cfl dt = 0.009354003137325139                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3461e+05 | 32768 |      1 | 9.793e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.86756860930893 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741614587810096, dt = 0.009354003137325139
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.90 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 299.64 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.1%)
Info: cfl dt = 0.009354000897273482                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3363e+05 | 32768 |      1 | 9.822e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.86113968007396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38351546191833474, dt = 0.009354000897273482
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 302.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.8%)
Info: cfl dt = 0.009353999655229829                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3300e+05 | 32768 |      1 | 9.840e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.209257878046 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39286946281560825, dt = 0.009353999655229829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.7%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 349.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.9%)
Info: cfl dt = 0.009353999533072076                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5261e+05 | 32768 |      1 | 9.293e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.3656291847912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40222346247083807, dt = 0.009353999533072076
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 288.35 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (61.8%)
Info: cfl dt = 0.009353997104337403                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3565e+05 | 32768 |      1 | 9.762e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.9375221613844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157746200391016, dt = 0.009353997104337403
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 338.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.0%)
Info: cfl dt = 0.009353995546258296                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3493e+05 | 32768 |      1 | 9.784e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.1952936188781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4209314591082476, dt = 0.009353995546258296
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.85 us    (1.8%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 301.35 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Info: cfl dt = 0.009353995246929335                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3617e+05 | 32768 |      1 | 9.747e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.4731268084373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302854546545059, dt = 0.009353995246929335
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.64 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 309.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.3%)
Info: cfl dt = 0.009353993378879885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4125e+05 | 32768 |      1 | 9.602e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.68870941665136 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4396394499014352, dt = 0.009353993378879885
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.88 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 316.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
Info: cfl dt = 0.009353991576363666                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4550e+05 | 32768 |      1 | 9.484e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.0533142747191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489934432803151, dt = 0.009353991576363666
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.60 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 341.34 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.6%)
Info: cfl dt = 0.009353990874762758                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4536e+05 | 32768 |      1 | 9.488e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.9128421548649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583474348566788, dt = 0.009353990874762758
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.88 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 308.37 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.3%)
Info: cfl dt = 0.00935398978276888                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4003e+05 | 32768 |      1 | 9.637e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.43730663154537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677014257314415, dt = 0.00935398978276888
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     : 4.74 us    (1.4%)
   patch tree reduce : 951.00 ns  (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 326.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.8%)
Info: cfl dt = 0.009353987770686838                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5074e+05 | 32768 |      1 | 9.343e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.43752256890474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4770554155142104, dt = 0.009353987770686838
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     : 4.89 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 652.00 ns  (0.2%)
   LB compute        : 297.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.0%)
Info: cfl dt = 0.009353986743504608                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3711e+05 | 32768 |      1 | 9.720e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.4356870300601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48640940328489723, dt = 0.009353986743504608
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     : 27.05 us   (4.3%)
   patch tree reduce : 1.21 us    (0.2%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.2%)
   LB compute        : 589.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
Info: cfl dt = 0.00935398639749715                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3678e+05 | 32768 |      1 | 9.730e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.092516452163 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49576339002840186, dt = 0.00935398639749715
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     : 4.38 us    (1.5%)
   patch tree reduce : 921.00 ns  (0.3%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.3%)
   LB compute        : 285.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (67.3%)
Info: cfl dt = 0.009353984190947672                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3521e+05 | 32768 |      1 | 9.775e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.4781752322768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505117376425899, dt = 0.009353984190947672
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     : 4.82 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 292.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.7%)
Info: cfl dt = 0.009353982862051143                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3975e+05 | 32768 |      1 | 9.645e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.14739484835246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144713606168467, dt = 0.009353982862051143
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     : 4.86 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 295.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (61.8%)
Info: cfl dt = 0.00935398279278194                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4547e+05 | 32768 |      1 | 9.485e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.02448112834225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238253434788979, dt = 0.00935398279278194
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.14 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 329.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.0%)
Info: cfl dt = 0.009353980759532896                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4045e+05 | 32768 |      1 | 9.625e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.8688067901481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331793262716799, dt = 0.009353980759532896
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     : 4.98 us    (1.5%)
   patch tree reduce : 1.02 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.3%)
   LB compute        : 305.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (62.0%)
Info: cfl dt = 0.009353979164731102                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3128e+05 | 32768 |      1 | 9.891e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.44785320860984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425333070312127, dt = 0.009353979164731102
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.12 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 310.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.4%)
Info: cfl dt = 0.009353978696187704                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3160e+05 | 32768 |      1 | 9.882e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.77477569088745 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518872861959438, dt = 0.009353978696187704
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     : 4.85 us    (1.5%)
   patch tree reduce : 1.00 us    (0.3%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 306.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.7%)
Info: cfl dt = 0.009353977392728753                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3690e+05 | 32768 |      1 | 9.726e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.21913301898155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612412648921316, dt = 0.009353977392728753
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.14 us    (1.7%)
   patch tree reduce : 1.06 us    (0.3%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 289.38 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.9%)
Info: cfl dt = 0.009353975586950126                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5347e+05 | 32768 |      1 | 9.270e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.2477116125617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705952422848604, dt = 0.009353975586950126
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.07 us    (1.6%)
   patch tree reduce : 1.07 us    (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 291.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.5%)
Info: cfl dt = 0.009353974777686921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5451e+05 | 32768 |      1 | 9.243e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.312774504821 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799492178718105, dt = 0.009353974777686921
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.02 us    (1.3%)
   patch tree reduce : 1.03 us    (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 358.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.2%)
Info: cfl dt = 0.009353974197290485                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7492e+05 | 32768 |      1 | 8.740e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 385.2917037788803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893031926494975, dt = 0.009353974197290485
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     : 4.85 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 274.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.6%)
Info: cfl dt = 0.009353972194286816                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3701e+05 | 32768 |      1 | 7.498e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.0976227522851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986571668467879, dt = 0.009353972194286816
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     : 4.82 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 352.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Info: cfl dt = 0.00935397108812354                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3443e+05 | 32768 |      1 | 7.543e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.44803069081524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080111390410747, dt = 0.00935397108812354
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     : 4.77 us    (1.5%)
   patch tree reduce : 1.01 us    (0.3%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 296.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (66.4%)
Info: cfl dt = 0.009353971206801669                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1483e+05 | 32768 |      1 | 7.899e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.30150471999684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173651101291983, dt = 0.009353971206801669
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     : 4.83 us    (1.5%)
   patch tree reduce : 981.00 ns  (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 303.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.2%)
Info: cfl dt = 0.009353969019530325                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2479e+05 | 32768 |      1 | 7.714e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.54334122653034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.626719081336, dt = 0.009353969019530325
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     : 4.58 us    (1.4%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 309.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.4%)
Info: cfl dt = 0.009353967628115934                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3195e+05 | 32768 |      1 | 9.871e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.1296758830777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360730503555303, dt = 0.009353967628115934
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.79 us    (1.8%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 294.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.2%)
Info: cfl dt = 0.009353967403590522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3113e+05 | 32768 |      1 | 9.896e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.29320550436614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454270179836462, dt = 0.009353967403590522
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     : 4.70 us    (1.5%)
   patch tree reduce : 1.10 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 295.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.0%)
Info: cfl dt = 0.009353965853638114                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9291e+05 | 32768 |      1 | 8.340e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.7723712845586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547809853872367, dt = 0.009353965853638114
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     : 4.46 us    (1.4%)
   patch tree reduce : 1.08 us    (0.3%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.3%)
   LB compute        : 310.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.6%)
Info: cfl dt = 0.009353964250676874                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6089e+05 | 32768 |      1 | 7.110e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.6343720009592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641349512408748, dt = 0.009353964250676874
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     : 4.51 us    (1.2%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 357.67 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.1%)
Info: cfl dt = 0.009353963682393237                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4148e+05 | 32768 |      1 | 7.422e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.69051779686544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734889154915518, dt = 0.009353963682393237
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     : 4.84 us    (1.6%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 293.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Info: cfl dt = 0.00935396281954801                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4116e+05 | 32768 |      1 | 7.428e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.36155679585954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.682842879173945, dt = 0.00935396281954801
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.10 us    (1.5%)
   patch tree reduce : 1.06 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 333.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
Info: cfl dt = 0.009353961021369428                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3522e+05 | 32768 |      1 | 9.775e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.4877520746014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921968419934931, dt = 0.009353961021369428
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.46 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 373.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Info: cfl dt = 0.009353960150382496                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0378e+05 | 32768 |      1 | 8.115e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 414.9492934608091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015508030148625, dt = 0.009353960150382496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 355.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.3%)
Info: cfl dt = 0.009353959966081333                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1433e+05 | 32768 |      1 | 7.909e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.78829272153104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710904763165245, dt = 0.009353959966081333
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.4%)
   LB compute        : 352.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (68.3%)
Info: cfl dt = 0.009353957982786317                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2598e+05 | 32768 |      1 | 7.692e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.76557068579484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202587231313263, dt = 0.009353957982786317
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 314.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.9%)
Info: cfl dt = 0.009353956834734733                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3751e+05 | 32768 |      1 | 7.490e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.61031952379653 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296126811141126, dt = 0.009353956834734733
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 356.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.8%)
Info: cfl dt = 0.009353956903229984                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1358e+05 | 32768 |      1 | 7.923e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.022345633565 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389666379488473, dt = 0.009353956903229984
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.71 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 343.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.6%)
Info: cfl dt = 0.009353955070097906                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4697e+05 | 32768 |      1 | 7.331e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.32671153680576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483205948520772, dt = 0.009353955070097906
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.49 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 304.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (62.5%)
Info: cfl dt = 0.009353953678405292                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4576e+05 | 32768 |      1 | 7.351e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.0880460972078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576745499221752, dt = 0.009353953678405292
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 315.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.0%)
Info: cfl dt = 0.00935395338662806                                       [amr::basegodunov][rank=0]
Info: Timestep 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.5204e+05 | 32768 |      1 | 7.249e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.54352372209894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670285036005805, dt = 0.00935395338662806
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.61 us    (1.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 282.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.4%)
Info: cfl dt = 0.009353952208830302                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3977e+05 | 32768 |      1 | 7.451e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.93068037055986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763824569872085, dt = 0.009353952208830302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 273.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.0%)
Info: cfl dt = 0.0093539506209572                                        [amr::basegodunov][rank=0]
Info: Timestep 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.3660e+05 | 32768 |      1 | 7.505e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.67843087565024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857364091960388, dt = 0.0093539506209572
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.84 us    (1.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (65.4%)
Info: cfl dt = 0.009353950009026009                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5871e+05 | 32768 |      1 | 7.143e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.3981307711424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.795090359816996, dt = 0.009353950009026009
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 313.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.9%)
Info: cfl dt = 0.009353949491366479                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4968e+05 | 32768 |      1 | 9.371e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.34864766895276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044443098260221, dt = 0.009353949491366479
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.96 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 303.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Info: cfl dt = 0.009353947715650342                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9058e+05 | 32768 |      1 | 8.390e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 401.37855929487466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137982593173886, dt = 0.009353947715650342
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.7%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 351.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.3%)
Info: cfl dt = 0.009353946821726198                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5530e+05 | 32768 |      1 | 7.197e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.8964887355988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231522070330389, dt = 0.009353946821726198
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 302.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.4%)
Info: cfl dt = 0.009353946949347061                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5592e+05 | 32768 |      1 | 7.187e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.53368021290214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325061538547651, dt = 0.009353946949347061
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.94 us    (1.9%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 290.36 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 0.009353944995966337                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5654e+05 | 32768 |      1 | 7.178e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.1617838465429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418601008041122, dt = 0.009353944995966337
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.99 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.3%)
   LB compute        : 401.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (64.9%)
Info: cfl dt = 0.009353943835169572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5938e+05 | 32768 |      1 | 9.118e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 369.31867064324524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512140458000785, dt = 0.009353943835169572
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.76 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 342.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.6%)
Info: cfl dt = 0.009353943840557644                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4709e+05 | 32768 |      1 | 9.441e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.68581199698974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.860567989635248, dt = 0.009353943840557644
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    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 301.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (71.3%)
Info: cfl dt = 0.009353942316090715                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4235e+05 | 32768 |      1 | 7.408e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.5882864354781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699219334758057, dt = 0.009353942316090715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 287.98 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.3%)
Info: cfl dt = 0.009353940941880341                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4598e+05 | 32768 |      1 | 7.347e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.3141582556333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792758757918965, dt = 0.009353940941880341
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 395.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (69.8%)
Info: cfl dt = 0.009353940615400815                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4384e+05 | 32768 |      1 | 9.530e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.3491088841856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886298167337768, dt = 0.009353940615400815
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.75 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 345.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (64.7%)
Info: cfl dt = 0.009353939727278068                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2083e+05 | 32768 |      1 | 7.786e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.4724778130855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979837573491777, dt = 0.009353939727278068
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 362.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.9%)
Info: cfl dt = 0.009353938163272691                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4735e+05 | 32768 |      1 | 7.325e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.7176417167566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073376970764557, dt = 0.009353938163272691
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 318.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.4%)
Info: cfl dt = 0.009353937528830254                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4633e+05 | 32768 |      1 | 7.342e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.67333839098615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166916352397284, dt = 0.009353937528830254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 279.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
Info: cfl dt = 0.009353937283498849                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5854e+05 | 32768 |      1 | 7.146e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.21949742868657 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260455727685587, dt = 0.009353937283498849
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 290.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.2%)
Info: cfl dt = 0.009353935535483                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1972e+05 | 32768 |      1 | 1.025e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.56027591774193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353995100520576, dt = 0.009353935535483
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.64 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 346.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.7%)
Info: cfl dt = 0.009353934631720252                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4879e+05 | 32768 |      1 | 9.395e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.43068185119233 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447534455875406, dt = 0.009353934631720252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 303.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.7%)
Info: cfl dt = 0.009353934954674297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4973e+05 | 32768 |      1 | 9.370e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.39837934251426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541073802192609, dt = 0.009353934954674297
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.52 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 302.65 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (61.4%)
Info: cfl dt = 0.00935393307914833                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3903e+05 | 32768 |      1 | 9.665e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.4054758512343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634613151739352, dt = 0.00935393307914833
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 306.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
Info: cfl dt = 0.009353931916772359                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4660e+05 | 32768 |      1 | 9.454e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.18264513109153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728152482530835, dt = 0.009353931916772359
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     : 7.64 us    (0.7%)
   patch tree reduce : 1.81 us    (0.2%)
   gen split merge   : 1.30 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.1%)
   LB compute        : 1.09 ms    (97.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (73.1%)
Info: cfl dt = 0.009353931874363779                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3412e+05 | 32768 |      1 | 9.807e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.3567669158025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821691801698559, dt = 0.009353931874363779
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.86 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 306.71 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
Info: cfl dt = 0.009353930612990186                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3803e+05 | 32768 |      1 | 9.694e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.3803019697211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915231120442196, dt = 0.008476887955780388
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.87 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 339.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.2%)
Info: cfl dt = 0.009353929364831651                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4759e+05 | 32768 |      1 | 9.427e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.70700313279224 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 81.200601463 (s)                                         [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.07 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (62.6%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (0.5%)
   patch tree reduce : 862.00 ns  (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 325.59 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
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     : 3.09 us    (0.8%)
   patch tree reduce : 431.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 354.85 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.9%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5659e+05 | 32768 |      1 | 1.277e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.76 us    (0.6%)
   patch tree reduce : 1.71 us    (0.2%)
   gen split merge   : 901.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.1%)
   LB compute        : 963.51 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.9%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4161e+05 | 32768 |      1 | 1.356e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 248.29387561628474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
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.96 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 326.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.0%)
Info: cfl dt = 0.009354070025152395                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1128e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.8958684228017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070025152395
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.44 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 322.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.6%)
Info: cfl dt = 0.009354068997132361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0542e+05 | 32768 |      1 | 1.073e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.87148544003054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806222633212528, dt = 0.009354068997132361
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.25 us    (1.5%)
   patch tree reduce : 1.16 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 335.60 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.4%)
Info: cfl dt = 0.009354063560589144                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6629e+05 | 32768 |      1 | 8.946e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376.42467063616914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.037416295329257644, dt = 0.009354063560589144
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.18 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 364.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
Info: cfl dt = 0.009354060430101651                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7216e+05 | 32768 |      1 | 8.805e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 382.45291042060137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035888984679, dt = 0.009354060430101651
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     : 4.91 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 296.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (63.9%)
Info: cfl dt = 0.009354060331855442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2965e+05 | 32768 |      1 | 9.940e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.77392374291884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056124419319948445, dt = 0.009354060331855442
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     : 4.93 us    (1.4%)
   patch tree reduce : 942.00 ns  (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 339.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Info: cfl dt = 0.009354056142077238                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3286e+05 | 32768 |      1 | 7.570e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.83127519325234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847965180388, dt = 0.009354056142077238
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     : 4.74 us    (1.4%)
   patch tree reduce : 1.14 us    (0.3%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 317.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.0%)
Info: cfl dt = 0.009354053148485976                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2594e+05 | 32768 |      1 | 7.693e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.7270860256268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253579388112, dt = 0.009354053148485976
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.92 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 318.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.8%)
Info: cfl dt = 0.009354052192277168                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2428e+05 | 32768 |      1 | 7.723e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.01387734165775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841865889423671, dt = 0.009354052192277168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 325.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.0%)
Info: cfl dt = 0.009354049658216564                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3419e+05 | 32768 |      1 | 9.805e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.4405413537488 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354064113464426, dt = 0.009354049658216564
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.88 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 314.27 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.7%)
Info: cfl dt = 0.00935404660958092                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2976e+05 | 32768 |      1 | 9.937e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.8826972640692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289469079286083, dt = 0.00935404660958092
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 376.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (60.5%)
Info: cfl dt = 0.009354045408483705                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2879e+05 | 32768 |      1 | 9.966e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.8822259034737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224873740244175, dt = 0.009354045408483705
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.83 us    (1.5%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 369.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.2%)
Info: cfl dt = 0.009354044049306039                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2259e+05 | 32768 |      1 | 7.754e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.2820416256297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160278281092546, dt = 0.009354044049306039
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.55 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 349.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.0%)
Info: cfl dt = 0.009354040828235835                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4429e+05 | 32768 |      1 | 7.375e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.57909856263547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568268602315, dt = 0.009354040828235835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 329.85 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.1%)
Info: cfl dt = 0.009354039248471363                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2042e+05 | 32768 |      1 | 7.794e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.04949694455115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031086768846734, dt = 0.009354039248471363
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 288.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (61.5%)
Info: cfl dt = 0.009354039032373428                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2616e+05 | 32768 |      1 | 7.689e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.95141775482097 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496649069369387, dt = 0.009354039032373428
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 291.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     : 2.21 us    (65.8%)
Info: cfl dt = 0.009354035682225157                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3658e+05 | 32768 |      1 | 9.736e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.88770846060316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901894596931213, dt = 0.009354035682225157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 315.11 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.5%)
Info: cfl dt = 0.009354033673201465                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2385e+05 | 32768 |      1 | 7.731e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.5778679522393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837298165153727, dt = 0.009354033673201465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 361.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.2%)
Info: cfl dt = 0.009354033425175785                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2731e+05 | 32768 |      1 | 7.668e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.13288160218804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772701532473872, dt = 0.009354033425175785
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.66 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 345.55 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (68.0%)
Info: cfl dt = 0.0093540308403691                                        [amr::basegodunov][rank=0]
Info: Timestep 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.0969e+05 | 32768 |      1 | 7.998e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421.01933929257024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708104874991452, dt = 0.0093540308403691
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 282.62 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.1%)
Info: cfl dt = 0.00935402848557945                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2654e+05 | 32768 |      1 | 7.682e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.3427908535329 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350795902836, dt = 0.00935402848557945
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.57 us    (1.7%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 301.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (60.7%)
Info: cfl dt = 0.009354027740402664                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2965e+05 | 32768 |      1 | 7.627e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.5312767949658 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578910807586306, dt = 0.009354027740402664
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.70 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 370.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Info: cfl dt = 0.0093540262525428                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7581e+05 | 32768 |      1 | 8.719e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 386.21007435081094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514313581626573, dt = 0.0093540262525428
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 279.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (63.5%)
Info: cfl dt = 0.009354023677664804                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4728e+05 | 32768 |      1 | 7.326e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.65462431033137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449716206880854, dt = 0.009354023677664804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 314.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.3%)
Info: cfl dt = 0.009354022448693428                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3020e+05 | 32768 |      1 | 7.617e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.1017603913527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385118574647334, dt = 0.009354022448693428
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.78 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 319.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.8%)
Info: cfl dt = 0.009354022005517115                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5536e+05 | 32768 |      1 | 7.196e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.95443526959684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320520819516678, dt = 0.009354022005517115
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.75 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 320.24 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.5%)
Info: cfl dt = 0.009354019207333067                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5729e+05 | 32768 |      1 | 7.166e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.9365099308451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525592302006839, dt = 0.009354019207333067
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.51 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 349.24 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 0.009354017548712132                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3753e+05 | 32768 |      1 | 9.708e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.865662640143 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191324940801697, dt = 0.009354017548712132
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 278.91 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.0%)
Info: cfl dt = 0.009354017456260244                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3875e+05 | 32768 |      1 | 9.673e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.1231518525784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712672669567291, dt = 0.009354017456260244
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 283.10 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.94 us    (65.3%)
Info: cfl dt = 0.009354014962342595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1607e+05 | 32768 |      1 | 1.037e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.81319078136306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062128441298934, dt = 0.009354014962342595
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.92 us    (1.9%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 300.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.7%)
Info: cfl dt = 0.00935401297380293                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2960e+05 | 32768 |      1 | 9.942e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.71301335413267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997529937533195, dt = 0.00935401297380293
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.45 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 301.12 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (61.8%)
Info: cfl dt = 0.009354012344533591                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2742e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.4755726030598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2993293123491349, dt = 0.009354012344533591
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.84 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 333.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.8%)
Info: cfl dt = 0.00935401084226634                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9843e+05 | 32768 |      1 | 1.098e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.6819689330997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086833246936685, dt = 0.00935401084226634
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 325.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.4%)
Info: cfl dt = 0.009354008589287723                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3073e+05 | 32768 |      1 | 7.608e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.64578257106757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803733553593483, dt = 0.009354008589287723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 290.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.009354007561995633                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2279e+05 | 32768 |      1 | 7.751e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.4804579571838 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3273913441252225, dt = 0.009354007561995633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 298.15 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.91 us    (64.3%)
Info: cfl dt = 0.009354006984716877                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0797e+05 | 32768 |      1 | 8.032e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 419.2540003355369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674535168721814, dt = 0.009354006984716877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 337.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.7%)
Info: cfl dt = 0.009354004489580552                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0891e+05 | 32768 |      1 | 8.013e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 420.22442657330697 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609935867193503, dt = 0.009354004489580552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 373.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (69.3%)
Info: cfl dt = 0.009354003071474522                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1696e+05 | 32768 |      1 | 7.859e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 428.492620077452 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554533631615156, dt = 0.009354003071474522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 311.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.1%)
Info: cfl dt = 0.00935400305638563                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3822e+05 | 32768 |      1 | 7.477e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.3441827453935 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480736623299015, dt = 0.00935400305638563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 327.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (63.8%)
Info: cfl dt = 0.009354000616045742                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2537e+05 | 32768 |      1 | 7.703e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.1378370138638 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416136928937577, dt = 0.009354000616045742
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.47 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 324.58 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (61.8%)
Info: cfl dt = 0.009353998846818248                                      [amr::basegodunov][rank=0]
Info: Timestep 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.1601e+05 | 32768 |      1 | 7.877e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.5151721735999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835153699054215, dt = 0.009353998846818248
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.92 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.94 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.0%)
Info: cfl dt = 0.009353998385449303                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3213e+05 | 32768 |      1 | 7.583e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.0788516275632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39286936875223977, dt = 0.009353998385449303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.0%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 280.02 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.7%)
Info: cfl dt = 0.009353996820371439                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7026e+05 | 32768 |      1 | 8.850e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 380.5053697998781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022233671376891, dt = 0.009353996820371439
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.48 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 324.21 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (61.7%)
Info: cfl dt = 0.009353994788429866                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0208e+05 | 32768 |      1 | 8.150e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.2049338624773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115773639580605, dt = 0.009353994788429866
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.96 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 3.55 us    (0.9%)
   LB compute        : 372.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.7%)
Info: cfl dt = 0.009353993931422992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1866e+05 | 32768 |      1 | 1.028e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.4748241466539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093135874649035, dt = 0.009353993931422992
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 349.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.9%)
Info: cfl dt = 0.009353993234544415                                      [amr::basegodunov][rank=0]
Info: Timestep 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.0630e+05 | 32768 |      1 | 8.065e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 417.5385415106662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43028535267791335, dt = 0.009353993234544415
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.48 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 375.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.1%)
Info: cfl dt = 0.009353990970832718                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2107e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.9535531851425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963934591245774, dt = 0.009353990970832718
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 325.96 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.8%)
Info: cfl dt = 0.009353989741475242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2670e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.73818608599635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899333688329046, dt = 0.009353989741475242
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 327.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
Info: cfl dt = 0.009353989869870316                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3340e+05 | 32768 |      1 | 9.828e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.62166859685647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583473266247657, dt = 0.009353989869870316
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 342.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Info: cfl dt = 0.009353987401498318                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3253e+05 | 32768 |      1 | 9.854e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.7281678029471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467701316494636, dt = 0.009353987401498318
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.74 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.65 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.4%)
Info: cfl dt = 0.00935398582019364                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3415e+05 | 32768 |      1 | 9.806e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.39472453396536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4770553038961343, dt = 0.00935398582019364
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.8%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 347.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.5%)
Info: cfl dt = 0.009353985504974656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3016e+05 | 32768 |      1 | 9.925e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.2894804665492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48640928971632796, dt = 0.009353985504974656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 311.53 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.8%)
Info: cfl dt = 0.009353983846291457                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3547e+05 | 32768 |      1 | 9.768e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.7455357343296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49576327522130265, dt = 0.009353983846291457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Info: cfl dt = 0.009353982017661118                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2864e+05 | 32768 |      1 | 9.971e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.7255209040261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051172590675941, dt = 0.009353982017661118
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.89 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.79 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (68.6%)
Info: cfl dt = 0.009353981333168684                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3701e+05 | 32768 |      1 | 9.723e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.33145587206906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144712410852552, dt = 0.009353981333168684
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.7%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 366.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.9%)
Info: cfl dt = 0.00935398047421039                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3929e+05 | 32768 |      1 | 9.658e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.67907291637647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238252224184239, dt = 0.00935398047421039
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 336.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (63.8%)
Info: cfl dt = 0.009353978417789462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2234e+05 | 32768 |      1 | 1.017e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.2558941203186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331792028926343, dt = 0.009353978417789462
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 309.32 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Info: cfl dt = 0.009353977388183365                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3702e+05 | 32768 |      1 | 9.723e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.3379977614037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425331813104238, dt = 0.009353977388183365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.8%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 341.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.3%)
Info: cfl dt = 0.009353977314102485                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7276e+05 | 32768 |      1 | 8.791e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 383.0717274655998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518871586986072, dt = 0.009353977314102485
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.82 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 341.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.009353975043467314                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5680e+05 | 32768 |      1 | 7.173e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.43558175947516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612411360127096, dt = 0.009353975043467314
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.72 us    (1.6%)
   patch tree reduce : 1.01 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 344.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.3%)
Info: cfl dt = 0.009353973679986687                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2320e+05 | 32768 |      1 | 1.014e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.14079594718896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570595111056177, dt = 0.009353973679986687
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.63 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 341.81 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.5%)
Info: cfl dt = 0.009353973555669807                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1931e+05 | 32768 |      1 | 1.026e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.1413135928288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799490847361637, dt = 0.009353973555669807
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.27 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.2%)
Info: cfl dt = 0.009353971736157091                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1765e+05 | 32768 |      1 | 1.032e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.44009902551625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893030582918335, dt = 0.009353971736157091
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 312.45 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (64.1%)
Info: cfl dt = 0.009353970105417022                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2159e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.48895169012064 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986570300279905, dt = 0.009353970105417022
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.32 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (62.2%)
Info: cfl dt = 0.009353969617749862                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2015e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.00048947607445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080110001334076, dt = 0.009353969617749862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 320.16 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.1%)
Info: cfl dt = 0.009353968549344107                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2084e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.7132999864949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173649697511574, dt = 0.009353968549344107
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.61 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 380.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.3%)
Info: cfl dt = 0.009353966695325915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3473e+05 | 32768 |      1 | 9.789e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.98831779324934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267189383005015, dt = 0.009353966695325915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.5%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 392.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Info: cfl dt = 0.009353965878050197                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1674e+05 | 32768 |      1 | 1.035e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.49694347895434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360729049958275, dt = 0.009353965878050197
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.70 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 310.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.4%)
Info: cfl dt = 0.009353965555511825                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1941e+05 | 32768 |      1 | 1.026e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.24557363630055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454268708738776, dt = 0.009353965555511825
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.65 us    (1.8%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 298.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (62.3%)
Info: cfl dt = 0.009353963491904585                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4597e+05 | 32768 |      1 | 9.471e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.5344929596699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547808364293894, dt = 0.009353963491904585
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.79 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 299.21 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.1%)
Info: cfl dt = 0.00935396235853946                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4473e+05 | 32768 |      1 | 9.505e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.2629773540245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664134799921294, dt = 0.00935396235853946
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.52 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 334.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.3%)
Info: cfl dt = 0.009353962473571002                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3809e+05 | 32768 |      1 | 9.692e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.44071632462214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734887622798335, dt = 0.009353962473571002
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.65 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (61.1%)
Info: cfl dt = 0.009353960446638356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3256e+05 | 32768 |      1 | 9.853e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.7626398366763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828427247534045, dt = 0.009353960446638356
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.43 us    (1.8%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 278.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.8%)
Info: cfl dt = 0.009353959024287551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9302e+05 | 32768 |      1 | 8.337e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.8893501799195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921966852000428, dt = 0.009353959024287551
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.46 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 362.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.1%)
Info: cfl dt = 0.009353958763348432                                      [amr::basegodunov][rank=0]
Info: Timestep 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.6154e+05 | 32768 |      1 | 7.100e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.3072180827529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015506442243304, dt = 0.009353958763348432
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.70 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 301.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.2%)
Info: cfl dt = 0.009353957439416357                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5972e+05 | 32768 |      1 | 7.128e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.4339043340746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109046029876789, dt = 0.009353957439416357
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.53 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 329.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.9%)
Info: cfl dt = 0.009353955794545503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8661e+05 | 32768 |      1 | 8.476e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 397.30349521747837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202585604270952, dt = 0.009353955794545503
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 310.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.8%)
Info: cfl dt = 0.009353955216079875                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2161e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.5067477097997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296125162216407, dt = 0.009353955216079875
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.79 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 296.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.2%)
Info: cfl dt = 0.009353954595174843                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2773e+05 | 32768 |      1 | 9.999e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.78943726326116 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389664714377205, dt = 0.009353954595174843
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.97 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 310.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Info: cfl dt = 0.009353952744835444                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2927e+05 | 32768 |      1 | 9.952e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.37266522973107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483204260328954, dt = 0.009353952744835444
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.94 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 318.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Info: cfl dt = 0.009353951862272019                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2737e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.42518443522727 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576743787777308, dt = 0.009353951862272019
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.66 us    (1.8%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 298.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (61.8%)
Info: cfl dt = 0.009353951940225308                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1908e+05 | 32768 |      1 | 1.027e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.89981566572226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670283306400029, dt = 0.009353951940225308
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.10 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 317.88 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.0%)
Info: cfl dt = 0.009353949893704572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2500e+05 | 32768 |      1 | 1.008e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.98877288756955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763822825802281, dt = 0.009353949893704572
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     : 4.82 us    (1.4%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 322.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.7%)
Info: cfl dt = 0.009353948714124972                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1984e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.6904599044564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857362324739326, dt = 0.009353948714124972
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.21 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 318.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.8%)
Info: cfl dt = 0.00935394872539185                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1849e+05 | 32768 |      1 | 1.029e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.3015178236221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950901811880576, dt = 0.00935394872539185
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.07 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 344.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (70.4%)
Info: cfl dt = 0.00935394709318641                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1408e+05 | 32768 |      1 | 1.043e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.7633322900254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044441299134495, dt = 0.00935394709318641
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.38 us    (1.6%)
   patch tree reduce : 922.00 ns  (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 315.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.5%)
Info: cfl dt = 0.00935394566902819                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1523e+05 | 32768 |      1 | 1.040e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.94550603126686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137980770066359, dt = 0.00935394566902819
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     : 4.53 us    (1.4%)
   patch tree reduce : 1.10 us    (0.3%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 312.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.9%)
Info: cfl dt = 0.009353945349011246                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2039e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.2492368888265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.823152022675664, dt = 0.009353945349011246
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.38 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.3%)
   LB compute        : 308.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.8%)
Info: cfl dt = 0.009353944392502674                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2645e+05 | 32768 |      1 | 1.004e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.47684204048073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325059680246752, dt = 0.009353944392502674
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     : 4.52 us    (1.3%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.8%)
Info: cfl dt = 0.009353942759372062                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+05 | 32768 |      1 | 1.039e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.0870970196101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841859912417178, dt = 0.009353942759372062
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.50 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 327.30 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.5%)
Info: cfl dt = 0.00935394213762993                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0331e+05 | 32768 |      1 | 1.080e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.7022089162482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.85121385517655, dt = 0.00935394213762993
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.46 us    (1.6%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 324.14 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.2%)
Info: cfl dt = 0.009353941858104224                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1127e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.88229659502883 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.86056779731418, dt = 0.009353941858104224
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.35 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 314.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
Info: cfl dt = 0.009353940027368772                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1052e+05 | 32768 |      1 | 1.055e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.1069737497025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699217391722842, dt = 0.009353940027368772
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     : 4.85 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 324.19 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.2%)
Info: cfl dt = 0.009353939111858561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1887e+05 | 32768 |      1 | 1.028e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.6876764711694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.879275679199653, dt = 0.009353939111858561
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.07 us    (1.5%)
   patch tree reduce : 1.08 us    (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 319.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.6%)
Info: cfl dt = 0.009353939429925441                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9976e+05 | 32768 |      1 | 1.093e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.04715120249404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886296183115115, dt = 0.009353939429925441
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     : 4.80 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 345.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.4%)
Info: cfl dt = 0.009353937468471778                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.3037476997384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.897983557741437, dt = 0.009353937468471778
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.12 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 330.64 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.0%)
Info: cfl dt = 0.009353936269104364                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2390e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.8559880603673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073374952099088, dt = 0.009353936269104364
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     : 4.48 us    (1.1%)
   patch tree reduce : 1.05 us    (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 380.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.6%)
Info: cfl dt = 0.009353936211637342                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2332e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.2569610339735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166914314790132, dt = 0.009353936211637342
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.00 us    (1.5%)
   patch tree reduce : 1.02 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 308.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.3%)
Info: cfl dt = 0.009353934895751004                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1993e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.7756664854029 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260453676906506, dt = 0.009353934895751004
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.49 us    (1.5%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 336.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.5%)
Info: cfl dt = 0.009353933479267875                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0920e+05 | 32768 |      1 | 1.060e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.74983443529396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353993025864016, dt = 0.009353933479267875
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.39 us    (1.7%)
   patch tree reduce : 1.05 us    (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 295.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (63.0%)
Info: cfl dt = 0.009353933118100078                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3321e+05 | 32768 |      1 | 9.834e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.424938103071 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447532360656694, dt = 0.009353933118100078
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     : 4.81 us    (1.5%)
   patch tree reduce : 872.00 ns  (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 301.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (63.4%)
Info: cfl dt = 0.009353932459237014                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3207e+05 | 32768 |      1 | 9.868e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.2578014080145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541071691837695, dt = 0.009353932459237014
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.33 us    (1.5%)
   patch tree reduce : 1.07 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 331.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.5%)
Info: cfl dt = 0.009353930842317077                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3380e+05 | 32768 |      1 | 9.817e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.03187087047667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634611016430065, dt = 0.009353930842317077
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     : 4.70 us    (1.5%)
   patch tree reduce : 1.04 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 304.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.7%)
Info: cfl dt = 0.009353930188359706                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3410e+05 | 32768 |      1 | 9.808e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.3349455172736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728150324853235, dt = 0.009353930188359706
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     : 4.49 us    (1.2%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 369.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
Info: cfl dt = 0.00935393018905543                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2728e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.33192194631846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821689626736833, dt = 0.00935393018905543
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.02 us    (1.5%)
   patch tree reduce : 1.11 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.3%)
   LB compute        : 309.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.2%)
Info: cfl dt = 0.009353928378602836                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3210e+05 | 32768 |      1 | 9.867e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.28753229669644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915228928627386, dt = 0.008477107137261353
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.12 us    (1.5%)
   patch tree reduce : 1.08 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 323.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.2%)
Info: cfl dt = 0.009353927494690235                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3860e+05 | 32768 |      1 | 9.678e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.345399185192 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 91.441669058 (s)                                         [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  1.07 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.58 us    (61.7%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (0.3%)
   patch tree reduce : 861.00 ns  (0.2%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.44 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 91.518958479 (s)                                         [Godunov][rank=0]
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     : 3.49 us    (1.0%)
   patch tree reduce : 512.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 348.58 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 1.98 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Info: cfl dt = 0.009354083528780794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2241e+05 | 32768 |      1 | 1.016e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
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.88 us    (1.8%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 305.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.1%)
Info: cfl dt = 0.009354072778192094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2681e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.8519146642603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
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     : 4.64 us    (1.5%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 300.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (63.6%)
Info: cfl dt = 0.009354070025152395                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2586e+05 | 32768 |      1 | 1.006e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.8801354408237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.006291843693027113
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     : 4.78 us    (1.5%)
   patch tree reduce : 1.10 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 550.00 ns  (0.2%)
   LB compute        : 305.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
Info: cfl dt = 0.009354069892516555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2206e+05 | 32768 |      1 | 1.017e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 222.6242512555812 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 91.943438849 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.025, dt = 0.009354069892516555
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.81 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 347.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.1%)
Info: cfl dt = 0.009354065311255261                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1796e+05 | 32768 |      1 | 1.031e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.7597386331662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034354069892516555, dt = 0.009354065311255261
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 321.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.4%)
Info: cfl dt = 0.009354061378167551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2018e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0358179767512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043708135203771814, dt = 0.006291864796228189
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     : 4.96 us    (1.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 341.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.6%)
Info: cfl dt = 0.009354060292255313                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2074e+05 | 32768 |      1 | 1.022e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 221.70661250051833 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 92.27165107 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.009354060292255313
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.79 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 340.34 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
Info: cfl dt = 0.009354059237287524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1973e+05 | 32768 |      1 | 1.025e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.5811683518994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05935406029225532, dt = 0.009354059237287524
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.16 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 304.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.3%)
Info: cfl dt = 0.009354055074257444                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5290e+05 | 32768 |      1 | 9.285e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.66883792542603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06870811952954284, dt = 0.006291880470457173
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.61 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 319.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.0%)
Info: cfl dt = 0.00935405332060999                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3122e+05 | 32768 |      1 | 7.599e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.0804298113968 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 92.56387256800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.07500000000000001, dt = 0.00935405332060999
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 317.97 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.5%)
Info: cfl dt = 0.00935405240457556                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2872e+05 | 32768 |      1 | 7.643e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.5791740730892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08435405332061, dt = 0.00935405240457556
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.65 us    (1.5%)
   patch tree reduce : 24.07 us   (6.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 322.86 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.4%)
Info: cfl dt = 0.00935404982891197                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6593e+05 | 32768 |      1 | 8.955e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376.0560355516721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09370810572518555, dt = 0.006291894274814455
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 331.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.1%)
Info: cfl dt = 0.00935404770116929                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2485e+05 | 32768 |      1 | 7.713e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.67399047975823 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 92.82161174800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.00935404770116929
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 338.45 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.3%)
Info: cfl dt = 0.00935404591278391                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1444e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.1393934385761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1093540477011693, dt = 0.00935404591278391
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.53 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 330.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.5%)
Info: cfl dt = 0.009354045694705992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9361e+05 | 32768 |      1 | 1.116e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.7308552371742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11870809361395321, dt = 0.006291906386046792
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.86 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 348.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.4%)
Info: cfl dt = 0.009354043260848795                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1754e+05 | 32768 |      1 | 1.032e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.49890599486963 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 93.155110674 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.009354043260848795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.7%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 359.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.3%)
Info: cfl dt = 0.00935404054999176                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2396e+05 | 32768 |      1 | 1.011e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.92684650986683 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1343540432608488, dt = 0.00935404054999176
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 300.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.7%)
Info: cfl dt = 0.009354039578543683                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+05 | 32768 |      1 | 1.039e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.1857048549323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14370808381084055, dt = 0.006291916189159474
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.06 us    (1.5%)
   patch tree reduce : 971.00 ns  (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 331.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.9%)
Info: cfl dt = 0.009354039463584634                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1989e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 221.1238346574573 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 93.483499515 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.009354039463584634
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.55 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 320.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.0%)
Info: cfl dt = 0.009354036160859757                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2359e+05 | 32768 |      1 | 1.013e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.54188836950436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15935403946358465, dt = 0.009354036160859757
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.82 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 306.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.4%)
Info: cfl dt = 0.009354034177637329                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1785e+05 | 32768 |      1 | 1.031e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.64414201119007 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1687080756244444, dt = 0.006291924375555619
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.02 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 308.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.48 us   (94.3%)
Info: cfl dt = 0.009354033778184391                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1569e+05 | 32768 |      1 | 1.038e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 218.21926721869505 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 93.812824901 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.009354033778184391
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.91 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 352.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.0%)
Info: cfl dt = 0.009354032245833819                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2386e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.82160869545606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1843540337781844, dt = 0.009354032245833819
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.99 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.6%)
Info: cfl dt = 0.00935402955142423                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1955e+05 | 32768 |      1 | 1.025e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.39279550173075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19370806602401822, dt = 0.006291933975981795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.03 us    (0.3%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 307.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (66.2%)
Info: cfl dt = 0.009354028542815121                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2154e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 222.2681751247542 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 94.139594121 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.009354028542815121
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 323.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.5%)
Info: cfl dt = 0.009354028427680811                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1253e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.17255851730664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20935402854281512, dt = 0.009354028427680811
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.59 us    (1.8%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 287.35 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.2%)
Info: cfl dt = 0.009354025736827832                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8328e+05 | 32768 |      1 | 1.157e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 291.1209901469967 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21870805697049595, dt = 0.00629194302950406
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.61 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 315.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (63.4%)
Info: cfl dt = 0.009354024210839024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9922e+05 | 32768 |      1 | 1.095e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 206.83451961080524 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 94.490236705 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.225, dt = 0.009354024210839024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 343.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (66.9%)
Info: cfl dt = 0.009354023047931922                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5554e+05 | 32768 |      1 | 7.193e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.14424404890957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23435402421083903, dt = 0.009354023047931922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.6%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 366.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.1%)
Info: cfl dt = 0.009354022373049758                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4525e+05 | 32768 |      1 | 7.359e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.57077067439985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24370804725877096, dt = 0.00629195274122904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 369.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.2%)
Info: cfl dt = 0.009354020524772362                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8305e+05 | 32768 |      1 | 8.555e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 264.7823592457544 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 94.73780651000001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.009354020524772362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 302.32 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (68.6%)
Info: cfl dt = 0.009354018506916582                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3630e+05 | 32768 |      1 | 9.744e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.6064831101398 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25935402052477236, dt = 0.009354018506916582
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.51 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 312.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.4%)
Info: cfl dt = 0.009354017916849061                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4090e+05 | 32768 |      1 | 7.432e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.0969011125571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26870803903168894, dt = 0.006291960968311083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 394.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (69.6%)
Info: cfl dt = 0.009354017368387398                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4192e+05 | 32768 |      1 | 7.415e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.48277751694064 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 95.00344243 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.275, dt = 0.009354017368387398
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 338.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.4%)
Info: cfl dt = 0.009354014745202581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3881e+05 | 32768 |      1 | 9.672e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.17752163330624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28435401736838745, dt = 0.009354014745202581
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.62 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 304.02 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
Info: cfl dt = 0.00935401324174287                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3728e+05 | 32768 |      1 | 9.715e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.60781065188945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29370803211359003, dt = 0.00629196788641001
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.14 us    (1.7%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 275.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.7%)
Info: cfl dt = 0.00935401302083272                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4423e+05 | 32768 |      1 | 9.519e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 237.94835758390082 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 95.307062723 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.00935401302083272
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 344.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
Info: cfl dt = 0.009354011376542732                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5332e+05 | 32768 |      1 | 7.228e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.8621068261256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30935401302083276, dt = 0.009354011376542732
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.79 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.4%)
Info: cfl dt = 0.009354009196128152                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5080e+05 | 32768 |      1 | 7.269e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.27502476865317 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3187080243973755, dt = 0.006291975602624511
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.93 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 300.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (61.3%)
Info: cfl dt = 0.009354008417154622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3365e+05 | 32768 |      1 | 9.821e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 230.63743998869944 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 95.56497726100001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.325, dt = 0.009354008417154622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.1%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 305.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Info: cfl dt = 0.009354008459678908                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4162e+05 | 32768 |      1 | 9.592e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.0735599465054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3343540084171546, dt = 0.009354008459678908
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.35 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 269.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.0%)
Info: cfl dt = 0.00935400583751134                                       [amr::basegodunov][rank=0]
Info: Timestep 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.5136e+05 | 32768 |      1 | 7.260e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.84856011732 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34370801687683356, dt = 0.006291983123166478
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.65 us    (2.0%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 266.15 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (68.2%)
Info: cfl dt = 0.009354004573359812                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5008e+05 | 32768 |      1 | 7.281e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1205902972387 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 95.825919525 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.009354004573359812
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.81 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 293.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (63.4%)
Info: cfl dt = 0.009354003672931025                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5213e+05 | 32768 |      1 | 7.247e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.63994863297825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35935400457335986, dt = 0.009354003672931025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 284.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (61.5%)
Info: cfl dt = 0.009354002783386817                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3985e+05 | 32768 |      1 | 7.450e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.0122448868462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3687080082462909, dt = 0.006291991753709092
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 305.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.1%)
Info: cfl dt = 0.009354001190722019                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3867e+05 | 32768 |      1 | 7.470e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.236153956604 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 96.062477821 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.375, dt = 0.009354001190722019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 345.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.9%)
Info: cfl dt = 0.009353999536786868                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2532e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.3231022988539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.384354001190722, dt = 0.009353999536786868
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.98 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 317.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (59.9%)
Info: cfl dt = 0.009353999186884484                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1768e+05 | 32768 |      1 | 1.031e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.4699542750928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3937080007275089, dt = 0.006291999272491133
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.71 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 298.92 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (62.9%)
Info: cfl dt = 0.009353998344325503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1728e+05 | 32768 |      1 | 1.033e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.32549116187823 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 96.38446901100001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.009353998344325503
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.83 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 334.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.1%)
Info: cfl dt = 0.009353996080800375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2117e+05 | 32768 |      1 | 1.020e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.0508976514068 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4093539983443255, dt = 0.009353996080800375
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.64 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 298.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (63.5%)
Info: cfl dt = 0.009353994888999743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2008e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.93220905280094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4187079944251259, dt = 0.006292005574874138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 345.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (61.0%)
Info: cfl dt = 0.009353994828784596                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2153e+05 | 32768 |      1 | 1.019e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 222.25990856657953 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 96.711729493 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.42500000000000004, dt = 0.009353994828784596
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 320.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (64.5%)
Info: cfl dt = 0.009353993037649425                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1992e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.77366939190017 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4343539948287846, dt = 0.009353993037649425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 302.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Info: cfl dt = 0.009353991176023698                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2078e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.6575945321142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44370798786643406, dt = 0.00629201213356595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 296.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (67.8%)
Info: cfl dt = 0.009353990577706382                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2434e+05 | 32768 |      1 | 1.010e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 224.20438050754586 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 97.038178766 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.009353990577706382
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     : 7.20 us    (2.1%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 329.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.4%)
Info: cfl dt = 0.009353990416396396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2026e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.117729829563 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4593539905777064, dt = 0.009353990416396396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 328.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.6%)
Info: cfl dt = 0.009353988044153955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1352e+05 | 32768 |      1 | 1.045e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.1919521299086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46870798099410277, dt = 0.006292019005897265
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.38 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.3%)
   LB compute        : 298.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.0%)
Info: cfl dt = 0.009353986988530634                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1803e+05 | 32768 |      1 | 1.030e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.8453827259341 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 97.368116176 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.47500000000000003, dt = 0.009353986988530634
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.74 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 344.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.6%)
Info: cfl dt = 0.009353986371554459                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1723e+05 | 32768 |      1 | 1.033e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.9995481778287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48435398698853066, dt = 0.009353986371554459
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.44 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 297.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Info: cfl dt = 0.009353985224002699                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1703e+05 | 32768 |      1 | 1.034e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.80205970852205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4937079733600851, dt = 0.006292026639914905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 314.38 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.3%)
Info: cfl dt = 0.009353983838839114                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1671e+05 | 32768 |      1 | 1.035e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 218.92865734622282 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 97.69915916800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.009353983838839114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 350.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Info: cfl dt = 0.009353982506214113                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2031e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.17302777901057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5093539838388391, dt = 0.009353982506214113
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.66 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 297.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.7%)
Info: cfl dt = 0.009353982424429953                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1963e+05 | 32768 |      1 | 1.025e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.47234141002457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187079663450532, dt = 0.006292033654946794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 310.36 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
Info: cfl dt = 0.009353981228463681                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1445e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.3689122662861 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 98.028998787 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.525, dt = 0.009353981228463681
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 378.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.0%)
Info: cfl dt = 0.00935397926903458                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+05 | 32768 |      1 | 1.040e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.69485758368785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5343539812284637, dt = 0.00935397926903458
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.90 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 339.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.7%)
Info: cfl dt = 0.00935397837961644                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1387e+05 | 32768 |      1 | 1.044e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.54803095998693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5437079604974983, dt = 0.0062920395025017894
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.96 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 334.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.9%)
Info: cfl dt = 0.009353978517217844                                      [amr::basegodunov][rank=0]
Info: Timestep 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.2619e+05 | 32768 |      1 | 7.689e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.6094734628318 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 98.33532652000001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.009353978517217844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.8%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 349.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.9%)
Info: cfl dt = 0.009353976491011369                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0779e+05 | 32768 |      1 | 1.065e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.3011483637794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5593539785172179, dt = 0.009353976491011369
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.91 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.8%)
Info: cfl dt = 0.009353974929746793                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0728e+05 | 32768 |      1 | 1.066e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.7754876218033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5687079550082292, dt = 0.006292044991770829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.4%)
Info: cfl dt = 0.009353974520405763                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1436e+05 | 32768 |      1 | 1.042e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.3073795314569 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 98.67087464400001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.5750000000000001, dt = 0.009353974520405763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 399.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.1%)
Info: cfl dt = 0.009353973987258622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2095e+05 | 32768 |      1 | 1.021e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.8281692016608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5843539745204058, dt = 0.009353973987258622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 319.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 0.009353971924770858                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0409e+05 | 32768 |      1 | 1.078e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.5002880688481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5937079485076644, dt = 0.006292051492335693
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.77 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 298.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.3%)
Info: cfl dt = 0.009353971082196886                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2664e+05 | 32768 |      1 | 1.003e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 225.79816386390192 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 99.00129467400001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.009353971082196886
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.76 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.6%)
Info: cfl dt = 0.00935397078765531                                       [amr::basegodunov][rank=0]
Info: Timestep 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.2955e+05 | 32768 |      1 | 7.629e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.4263303485969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.609353971082197, dt = 0.00935397078765531
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.72 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 359.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.9%)
Info: cfl dt = 0.00935396931431454                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3188e+05 | 32768 |      1 | 7.587e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.82197139869766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6187079418698523, dt = 0.00629205813014766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 331.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (61.8%)
Info: cfl dt = 0.009353968118859565                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4704e+05 | 32768 |      1 | 7.330e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.0258061904123 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 99.24201052100001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.625, dt = 0.009353968118859565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 314.40 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.3%)
Info: cfl dt = 0.00935396710964047                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4092e+05 | 32768 |      1 | 7.432e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.1139455648425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343539681188596, dt = 0.00935396710964047
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.7%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 351.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (71.5%)
Info: cfl dt = 0.009353967141363584                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5869e+05 | 32768 |      1 | 7.144e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.3713860714894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6437079352285, dt = 0.006292064771500017
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 319.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.7%)
Info: cfl dt = 0.009353965670625203                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3649e+05 | 32768 |      1 | 7.507e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.73251142335045 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 99.47773571 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.009353965670625203
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.85 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 354.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.0%)
Info: cfl dt = 0.009353964034580367                                      [amr::basegodunov][rank=0]
Info: Timestep 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.5065e+05 | 32768 |      1 | 7.271e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.1177084882207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6593539656706252, dt = 0.009353964034580367
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.61 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 354.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (72.1%)
Info: cfl dt = 0.009353963490767177                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4710e+05 | 32768 |      1 | 7.329e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.46079711631813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6687079297052055, dt = 0.006292070294794505
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.86 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 326.93 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.7%)
Info: cfl dt = 0.009353963549151368                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4557e+05 | 32768 |      1 | 7.354e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.00536813153116 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 99.713540127 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.675, dt = 0.009353963549151368
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.98 us    (1.7%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 335.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (65.2%)
Info: cfl dt = 0.009353961439961252                                      [amr::basegodunov][rank=0]
Info: Timestep 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.3226e+05 | 32768 |      1 | 7.581e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.21334587734975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6843539635491515, dt = 0.009353961439961252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 310.23 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
Info: cfl dt = 0.00935396021186416                                       [amr::basegodunov][rank=0]
Info: Timestep 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.3455e+05 | 32768 |      1 | 7.541e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.56887056469316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6937079249891127, dt = 0.006292075010887355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 344.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.3%)
Info: cfl dt = 0.009353960043766495                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5777e+05 | 32768 |      1 | 9.159e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 247.31201610656072 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 99.97153577600001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.009353960043766495
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.95 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 335.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.1%)
Info: cfl dt = 0.009353959072662451                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3504e+05 | 32768 |      1 | 9.780e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.30129012476056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7093539600437666, dt = 0.009353959072662451
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.77 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
Info: cfl dt = 0.009353957326763262                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3025e+05 | 32768 |      1 | 9.922e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.3854979689917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7187079191164291, dt = 0.006292080883571027
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.83 us    (1.6%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 348.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.4%)
Info: cfl dt = 0.009353956719419519                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0666e+05 | 32768 |      1 | 1.069e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 211.98752738944867 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 100.29520689 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.7250000000000001, dt = 0.009353956719419519
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 326.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.2%)
Info: cfl dt = 0.009353956830009738                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0371e+05 | 32768 |      1 | 1.079e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.1080962982673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7343539567194196, dt = 0.009353956830009738
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 356.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.1%)
Info: cfl dt = 0.009353954931618847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1118e+05 | 32768 |      1 | 1.053e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.7882057928904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7437079135494293, dt = 0.006292086450570666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (65.0%)
Info: cfl dt = 0.009353953940730946                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1768e+05 | 32768 |      1 | 1.031e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.6012969829929 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 100.63220778300001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.009353953940730946
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 338.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
Info: cfl dt = 0.009353953292643229                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+05 | 32768 |      1 | 1.041e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.3983130145394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7593539539407309, dt = 0.009353953292643229
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 319.82 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
Info: cfl dt = 0.009353952798285022                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1258e+05 | 32768 |      1 | 1.048e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.22330743712615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7687079072333741, dt = 0.006292092766625901
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 336.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Info: cfl dt = 0.0093539515261249                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0198e+05 | 32768 |      1 | 1.085e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 208.749129152111 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 100.970172702 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.775, dt = 0.0093539515261249
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.56 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 329.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
Info: cfl dt = 0.00935395026179593                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2020e+05 | 32768 |      1 | 1.023e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0557463356749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.784353951526125, dt = 0.00935395026179593
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.52 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 313.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.4%)
Info: cfl dt = 0.009353950133498235                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2540e+05 | 32768 |      1 | 1.007e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.399081746835 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7937079017879209, dt = 0.0062920982120791
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    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 309.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (60.4%)
Info: cfl dt = 0.00935394953798699                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3488e+05 | 32768 |      1 | 9.785e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 231.49397326065963 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 101.29074434500001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.00935394953798699
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 355.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Info: cfl dt = 0.009353947741564226                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2899e+05 | 32768 |      1 | 9.960e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.0913029026343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.809353949537987, dt = 0.009353947741564226
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.80 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 336.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
Info: cfl dt = 0.00935394690343776                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2983e+05 | 32768 |      1 | 9.935e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.95131524171563 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8187078972795512, dt = 0.006292102720448889
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.1%)
   patch tree reduce : 1.86 us    (0.3%)
   gen split merge   : 832.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 586.46 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
Info: cfl dt = 0.009353947035286025                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3122e+05 | 32768 |      1 | 9.893e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 228.963024171139 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 101.60749412400001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.8250000000000001, dt = 0.009353947035286025
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.99 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 357.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
Info: cfl dt = 0.009353945563393187                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2906e+05 | 32768 |      1 | 9.958e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.16104745993306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8343539470352861, dt = 0.009353945563393187
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.98 us    (0.9%)
   patch tree reduce : 1.61 us    (0.2%)
   gen split merge   : 882.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 647.46 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.6%)
Info: cfl dt = 0.009353944147580598                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3127e+05 | 32768 |      1 | 9.892e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.4287818610756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8437078925986793, dt = 0.006292107401320801
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 323.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.8%)
Info: cfl dt = 0.009353943790538458                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3041e+05 | 32768 |      1 | 9.917e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 228.4028163145313 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 101.924785137 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.009353943790538458
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     : 7.74 us    (2.2%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.83 us    (0.5%)
   LB compute        : 333.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.6%)
Info: cfl dt = 0.009353943705146096                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2211e+05 | 32768 |      1 | 1.017e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.01363326938645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8593539437905385, dt = 0.009353943705146096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 301.29 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.2%)
Info: cfl dt = 0.009353941826320837                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2794e+05 | 32768 |      1 | 9.992e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.0140583150996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8687078874956846, dt = 0.006292112504315384
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.99 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 310.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.6%)
Info: cfl dt = 0.009353941069642458                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2931e+05 | 32768 |      1 | 9.950e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 227.64320270924838 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 102.24550928500001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.875, dt = 0.009353941069642458
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 386.83 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Info: cfl dt = 0.009353940829541389                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2621e+05 | 32768 |      1 | 1.005e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.23025488947826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8843539410696425, dt = 0.009353940829541389
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 345.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (63.6%)
Info: cfl dt = 0.009353939787196456                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2732e+05 | 32768 |      1 | 1.001e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.372425301333 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8937078818991839, dt = 0.006292118100816091
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.73 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 353.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.7%)
Info: cfl dt = 0.00935393871417045                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2766e+05 | 32768 |      1 | 1.000e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 226.50477689738162 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 102.56549517100001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.00935393871417045
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 315.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.7%)
Info: cfl dt = 0.009353937824918118                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2918e+05 | 32768 |      1 | 9.954e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.28534576577044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9093539387141705, dt = 0.009353937824918118
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.88 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 317.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.2%)
Info: cfl dt = 0.009353938146435176                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2008e+05 | 32768 |      1 | 1.024e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.93382977562356 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9187078765390886, dt = 0.0062921234609114585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 312.58 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.7%)
Info: cfl dt = 0.00935393684862767                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2477e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 224.5015966433219 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 102.887743372 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.925, dt = 0.00935393684862767
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.61 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 368.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (72.1%)
Info: cfl dt = 0.009353935375974459                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2393e+05 | 32768 |      1 | 1.012e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.8852344650567 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9343539368486277, dt = 0.009353935375974459
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.75 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 308.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.9%)
Info: cfl dt = 0.009353934928365202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2485e+05 | 32768 |      1 | 1.009e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.8314014815586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9437078722246022, dt = 0.006292127775397893
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.52 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 302.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
Info: cfl dt = 0.009353935254400637                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2494e+05 | 32768 |      1 | 1.008e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 224.62348664627854 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 103.209975403 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.009353935254400637
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 356.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.4%)
Info: cfl dt = 0.009353933341104494                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3081e+05 | 32768 |      1 | 9.905e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.9596421410193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9593539352544007, dt = 0.009353933341104494
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.81 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 318.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (63.5%)
Info: cfl dt = 0.009353932253649146                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3162e+05 | 32768 |      1 | 9.881e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.7940160034605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9687078685955052, dt = 0.006292131404494916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 316.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.2%)
Info: cfl dt = 0.009353932155879562                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7190e+05 | 32768 |      1 | 8.811e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 257.087697045511 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 103.51503392000001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.9750000000000001, dt = 0.009353932155879562
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.75 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 305.19 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (64.0%)
Info: cfl dt = 0.009353931474429344                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4692e+05 | 32768 |      1 | 7.332e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.28092903842986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9843539321558796, dt = 0.009353931474429344
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 327.58 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.3%)
Info: cfl dt = 0.00935392991017246                                       [amr::basegodunov][rank=0]
Info: Timestep 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.4417e+05 | 32768 |      1 | 7.377e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.45175787408414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9937078636303089, dt = 0.006292136369691059
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 295.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.7%)
Info: cfl dt = 0.009353929396104922                                      [amr::basegodunov][rank=0]
Info: Timestep 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.4357e+05 | 32768 |      1 | 7.387e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.6274481428178 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 103.75088000500001 (s)                                   [Godunov][rank=0]

Plot 1: Comparison grouped by Riemann solver (last timestep only)

134 riemann_solvers = ["rusanov", "hll", "hllc"]
135 slope_limiters = ["none", "vanleer", "vanleer_sym", "minmod"]
136
137 fig, axes = plt.subplots(3, 1, figsize=(6, 15))
138 fig.suptitle(f"t={tmax} (Last Step)", fontsize=14)
139
140 for idx, solver in enumerate(riemann_solvers):
141     ax = axes[idx]
142     ax.set_title(f"Riemann Solver: {solver}")
143     ax.set_xlabel("$x$")
144     ax.set_ylabel("$\\rho$")
145     ax.grid(True, alpha=0.3)
146
147     for limiter in slope_limiters:
148         key = f"{limiter}_{solver}"
149         if key in data:
150             # Get the last timestep
151             last_step = data[key][-1]
152             ax.plot([x[0] for x in positions], last_step, label=limiter, linewidth=2)
153
154     ax.legend()
155
156 plt.tight_layout()
157 plt.show()
t=1.0 (Last Step), Riemann Solver: rusanov, Riemann Solver: hll, Riemann Solver: hllc

Plot 2: Animation of vanleer_sym_hllc configuration

163 from matplotlib.animation import FuncAnimation
164
165 fig2, ax2 = plt.subplots()
166 ax2.set_xlabel("$x$")
167 ax2.set_ylabel("$\\rho$")
168 ax2.set_ylim(0.9, 2.1)
169 ax2.grid(True, alpha=0.3)
170
171 x_positions = np.linspace(0, 1, len(data["minmod_hllc"][0]))
172 (line,) = ax2.plot(x_positions, data["minmod_hllc"][0])
173 ax2.set_title(f"minmod_hllc - t = {0.0:.3f} s")
174
175
176 def animate(frame):
177     t = tmax * frame / timestamps
178     line.set_ydata(data["minmod_hllc"][frame])
179     ax2.set_title(f"minmod_hllc - t = {t:.3f} s")
180     return (line,)
181
182
183 anim = FuncAnimation(fig2, animate, frames=timestamps + 1, interval=150, blit=False, repeat=True)
184 plt.tight_layout()
185 plt.show()

Total running time of the script: (1 minutes 43.235 seconds)

Estimated memory usage: 311 MB

Gallery generated by Sphinx-Gallery